I'm using a 3 Comboboxes top of a page and trying to show a gallery filter based on selected value of combobox.
At initial load of the screen, the gallery should show all of the items available in the datasource(SQL). So I'm using this condition.
CountRows(Combobox1.SelectedItems)=0
When the screen loads for the first time, this condition is not working at all, it is giving null. So I thought of using IsBlank or IsEmpty function for the same Combobox selected items property. But IsBlank and IsEmpty are workly perfectly for initial load but not working if we clear the Combobox back to no.
Can anyone suggest ?