I need to use combo box filter to select the data corresponding to a year. I have implented it using the combox box with the insertion type ‘Filtered Rows’,. The problem is that I am only able to filter a given range of data and I would need to filter several other ranges. I have checked that the souurce data field does not allow to put more than a range. How could I achieve this desired behaviour?
Best way to do this is to set up multiple combo boxes to run different queries for each range. So query1 would return the year labels, query 2 would return the corresponding labels for query1 etc. This creates a cascading effect until the final query that passes all these selections and returns the corresponding data.
However if youre using static data what you’d need to do is set up the same multiple combo boxes, but your source data for combo 2 would need to refer to the destination range of combo 1, combo 3 source would be the destination from combo 2 etc. Only use this option is youre using a small dataset.
Sorry but I’m a bit confused reading your answer. I have attached a xcelsius file that shows my current issue. As you can see I need to äpply row filtering over 2 diferent ranges. Could you kindly explain how to procedure over this sample?