I created collection in Power Apps ("Coils"), whereby I've filtered my DataSource by a particular record chosen by the User (using a dropdown result):
ClearCollect(Coils,ShowColumns(Filter(DataSource,ID=DropDown.Selected.ID),"Col11","Col12","Col13","Col14",...,"Col25"));
The collection becomes a single row of data with many columns, and due to the nature of my DataSource, several columns/fields are expected to be blank. (However, I never know which are blank since the creation of the collection is dynamic.) My goal is to display only the non-blank values from the collection in a Gallery. I figure that somehow I need to specify the non-blank entries as the items in the Gallery, or create a second collection of only non-blank values.
Being relatively new to Power Apps, I thought about somehow filtering by columns to remove blanks, or somehow transposing the collection into a single column (then filtering). I also tried dynamically removing blanks from the collection, but couldn't determine how to loop through each field.
Any thoughts or ideas would be appreciated!
I