Hello,
I have a form in Sharepoint where one of the fields is a multiple selection form. So, I created the gallery filter as a text input so that I can enter any word and it should filter the corresponding field in the gallery.
However, when I create the filter below, it works for the other filters, but for this one with multiple selection, it doesn't work.
Can you help me?
Filter(
'Banco de Dados Notificação CIEVS';
(IsBlank(dpano.Selected.Value) || Year('Data da Notificação') = dpano.Selected.Value);
(IsBlank(cbxsituacaoevento.Selected.Value) || 'Situação do evento'.Value = cbxsituacaoevento.Selected.Value);
(IsBlank(txtdoencaagravo.Text) ||
CountRows(
Filter(
Agravo_sob_suspeita.Value; // Isso acessa a tabela de valores de múltiplas seleções
Lower(Text(Value)) in Lower(txtdoencaagravo.Text) // Compara com o texto digitado
)
) > 0 // Se existir ao menos uma correspondĂŞncia
);
(IsBlank(txtdescricao.Text) ||
Lower(txtdescricao.Text) in Lower('Descrição sumária')
)
)