
Announcements
Hi,
I have a drop down on my apps gallery. I am wanting to be able to select a blank value and show all records. I have the "Allowemptyselection" property set to true on my drop down. My gallery's items property has the following :
Filter(
[@'Journey Resumes'],
Or(
IsBlank(Dropdown_Major.Selected),
Major2 = Dropdown_Major.Selected.Value
)
)
I have also placed a text label over my drop down which says all items and has the following in the visible property: IsBlank(Dropdown_Major.Selected)
How would I go about adding a blank value to my drop down though?
Hi @kat7777777
The easiest way to accomplish this is to use a combobox control rather than a dropdown control. The default behaviour of the combobox control includes a blank option.