Hi community
I would like to filter a modern data table with a text input, drop down and combo box control. Unfortunately it does not work. What is wrong with the syntax?
Filter(
Demo_Vertragsmanagement;
(IsBlank(TextInputCanvas1.Value) || TextInputCanvas1.Value in Titel) &&
(IsBlank(DropdownCanvas2.Selected.Value) || Status = DropdownCanvas2.Selected.Value) &&
(IsBlank(ComboboxCanvas1.Selected.Result) || Company = ComboboxCanvas1.Selected.Result) &&
(IsBlank(DropdownCanvas1.Selected.Value) || VertragArt = DropdownCanvas1.Selected.Value)
)

I am grateful for any help.