So I have a collection collData and a column Sales (datatype Num). I have a combobox(cmboSales) where I have the Sales value in range format and the items of the combo box are as follows
["1-100", "100-200", "200-300"]
I have implemented a filter on the collection,collData, based on the combobox(cmboSales) as follows
Filter(collData, cmboSales.Selected.Value = "1-100"&& Sales>=1&&Sales<100 Or
cmboSales.Selected.Value = "100-200"&& Sales>=100&&Sales<200
Or
cmboSales.Selected.Value = "200-300"&& Sales>=200&&Sales<300)
Now this is done with multiselect set to false.
How do I make this work with multiselect set to true. I cannot for the life of me figure out how to create a dynamic filter here. I am able to get the filter string by using Concatenate but as it returns a string the filter function is not taking it.