I have a gallery where I want to show the items which have been selected through a combo box. The combo box formula is: Distinct('Referral Tracker',Department), meaning that as Departments are added through form responses, these are automatically included in the drop-down selections.
I’m currently stuck with the gallery only selecting the most recently selected item within the combo box, rather than selecting multiple at the same time. How can I amend my gallery and combo box, so I can select more than one department to appear within my gallery?
Gallery formula: Filter('Referral Tracker',IsBlank('Department Combo Box'.SelectedItems.Result) || IsEmpty('Department Combo Box'.SelectedItems) || Department = 'Department Combo Box'.Selected.Result)
Combo box: ‘Department Combo Box’
Data source: ‘Referral Tracker’
Column from data source: ‘department’
Combo box formula: Distinct('Referral Tracker',Department) Thank you.