Hello,
I have a Gallery that is filtered by 4 different ComboBoxes. Currently it works in this state if the user is only choosing one option per ComboBox. The ComboBoxes I currently have are set to use multiple selections per ComboBox. I was wondering if this can be done. I am trying to use ForAll in the Filter statement but that does not seem to work. Notice the ForAll in the middle section in the Filter statement.
Switch(true, IsBlank(ComboBox1.Selected.Value) && IsBlank(ComboBox2.Selected.Value) && IsBlank(ComboBox3.Selected.Value) && IsBlank(ComboBox4.Selected.Value),
'Software Request',
Not(IsBlank(ComboBox1.Selected.Value)) && IsBlank(ComboBox2.Selected.Value) && IsBlank(ComboBox3.Selected.Value) && IsBlank(ComboBox4.Selected.Value),
Filter('Software Request', ForAll(ComboBox1.SelectedItems, Value) in 'Content Areas'),
Not(IsBlank(ComboBox1.Selected.Value)) && Not(IsBlank(ComboBox2.Selected.Value)) && IsBlank(ComboBox3.Selected.Value) && IsBlank(ComboBox4.Selected.Value),
Filter('Software Request',ComboBox1.Selected.Value in 'Content Areas' && ComboBox2.Selected.Value in 'Grade Level Access'))
Any help or other methods of going about this would be greatly appreciated. Thank you!