In my combobox, multiple values are selected, how to select the values that are in the combo and filter the gallery?
I need to select all lines where there are values selected in the combobox
The error I receive is that they are incompatible types: Txt, Table, how to resolve it?
My code that doesn't work when I compare the EQUIPS column with the values that are in the combobox
My Gallery
SortByColumns(
Filter(
TBL_CONTROLE_DIESEL;
ID=txtAtendimento.Text || IsBlank(txtAtendimento.Text);
EQUIPS= ComboBox3.SelectedItems || IsBlank(ComboBox3.SelectedItems)
);
"ID";
SortOrder.Descending
)
