'Guia derivacions 04.12.25',
// AGA (Choice, single-select)
IsBlank(ComboBox_AGA.Selected)
|| AGA.Value = ComboBox_AGA.Selected.Value,
// ESPECIALITAT (Text)
IsBlank(ComboBox_Especialitat.Selected)
|| ESPECIALITAT = ComboBox_Especialitat.Selected.Value,
// MONOGRÀFIC (Text) - note quotes for accent/space in column name if present
IsBlank(ComboBox_Prestacio.Selected)
|| 'MONOGRÀFIC' = ComboBox_Prestacio.Selected.Value
)
B) AGA is Multi‑select Choice
Filter(
'Guia derivacions 04.12.25',
// Keep row if any selected AGA value is present in this row’s AGA choices
IsEmpty(ComboBox_AGA.SelectedItems)
|| CountIf(ComboBox_AGA.SelectedItems, Value in AGA.Value) > 0,
IsEmpty(ComboBox_Especialitat.SelectedItems)
|| ESPECIALITAT in ComboBox_Especialitat.SelectedItems.Result,
IsEmpty(ComboBox_Prestacio.SelectedItems)
|| 'MONOGRÀFIC' in ComboBox_Prestacio.SelectedItems.Result
)
✅ Please click Accept as solution if my post helped you solve your issue and help others who will face the similar issue in future.
❤️ Please consider giving it a Like, If the approach was useful in other ways.
🏷️ Please tag me @MS.Ragavendar if you still have any queries related to the solution or issue persists.