Hi yall, thanks again for all your help these past few days.
Im coming in with another question, that I know is simple, but when I try to apply the previously threaded solutions or youtube tutorials I still cannot seem to get it to work.
As you can see I have a dropdown list helping to filter a gallery before a textinput is used to search. This dropdown list is populated with the distinct values of the "Plant" column, and Im trying to add a blank in the beginning of the dropdown list such that if a user does not know the Plant number, they can search the entire gallery.


Additionally, I've noticed when I first open the page that when there is no value selected in the DDL, no information loads in the gallery. So I'm trying to guarantee that there doesnt necessarily NEED to have a value selected in the DDL in order to still search the gallery.
This has been my current attempt, which i've taken from another thread:
Ungroup(
Table(
{myMenuOptions: Table({DDValue: Blank()})},
{myMenuOptions: Filter('Dropdown Values', DDType="Plant").DDValue}
),
"myMenuOptions"
)
Some additional relevant information, my Gallery name is "DataGallery", the column for the Plant number is "Plant", and the DDL name is "PlantDropDown"
Thanks again for yalls help!