I have gallery where the items property is set to Filter query on the datasource columns based on the search textbox. Other column types filter works fine without any issues except person or group (multiselect) column.
AdditionalRecipients is the multiselect person or group column where the code throws error. Any idea how to avoid this? Below is the code
If(
Len(SearchText.Text) = 0,
'DATASOURCE',
Filter(
'DATASOURCE',
SearchText.Text in Name.DisplayName || SearchText.Text in 'Serial Number' || SearchText.Text in Division || SearchText.Text in Type.Value || SearchText.Text in Status || SearchText.Text in AdditionalRecipients.DisplayName
)
)