Hi Everyone,
I need some help. I'm stuck filtering my gallery to show items that are not blank for a specific category.
My data has a column called 'Type'. When I select 'Completed' on Gallery_Progress I want the Main_Gallery to show me only the 'Type' where the column called 'Recipient Answer1' is not blank for all that same 'Type'.
Currently its showing me 'Type' that has a not blank 'Recipient Answer1' even if its only 1 of 3 'Types' where 'Recipient Answer1' is not blank.
I need it to only show me 'Type' if all 3 or however may of the same 'Type' has a not blank 'Recipient Answer1'
Items:
If(
Dropdown1.Selected.Value = "All" And Gallery_Progress.Selected.Value = "All Reviews",
Distinct(collect_AppData_Recip_MVP2, Type),
Dropdown1.Selected.Value = "All" And Gallery_Progress.Selected.Value = "Completed",
Distinct(Filter(collect_AppData_Recip_MVP2, 'Recipient Answer1' <> Blank()), Type)
)