Hi everyone,
We're having trouble combining different searches for different columns.
We have three columns (Title, Supplier and a combobox Status which is a lookupfield) which we need to get filtered/searched by combining all three, if possible.
It worked for two columns (title and status combobox) by using the following formula:
Search(
Filter(
VRT_WS_Artikels;
IsBlank(ComboBox3.Selected) || IsEmpty(ComboBox3.Selected) || Categorie.Value = ComboBox3.Selected.Result
);
Txt_Zoeken_Title.Text;
"Title"
)
However we can't seem to correctly add the search for 'Supplier', which is also just a single line of text field... We'd like to search the same way as for "Title", but we can't seem to combine them.
Thanks in advance!