Hi,
Im using this piece of code to filter a gallery for a dropdown, im not understanding the code too well and im struggling to modify it the way i want.
I want the galleries item code below to also show all items in the gallery if the dropdown is blank or if the dropdown says "Please Select".
Could someone help me modify it?
Filter(
Ungroup(
ForAll(
SQLHOLEIDDropdown.SelectedItems As aSel,
SortByColumns(
Filter(
TEMPExpCollarData,
BHID = aSel.HOLEID
),
"Created"
)
),
"Value"
),
!IsBlank(Created)
)