Hi,
In my app i have a gallery that shows a collection of Assets
SortByColumns(
Filter(
MyAssetColl,
If(
IsBlank(HOMEASSET.Selected.Asset),
true,
Asset = HOMEASSET.Selected.Asset
) && StartsWith (
Asset,
TextSearchBox1.Text
)
),
"Asset",
If(
SortDescending1,
Descending,
Ascending
)
)
When i collect the assets from the database i use the following code
ClearCollect(MyAssetColl,{Asset:""}); Collect(MyAssetColl,'Asset Register')
I need to collect the blank for the dropdown called HOMEASSET to work as i need the dropdown to display blank when the app is first started.
However i now have a blank row in the gallery, i wish for that blank gallery to be hidden?