Hi,
This scenario you will have a delegation warning and this is the function:
Filter(
'List 1',
status in ComboBoxStatus.SelectedItems.status || IsBlank(ComboBoxStatus.Selected.status),
name in ComboBoxName.SelectedItems.name|| IsBlank(ComboBoxName.Selected.name)
)
I considered both columns as text, but if status is a choice replace 'status' with 'status.Value':
Filter(
'List 1',
status.Value in ComboBoxStatus.SelectedItems.status || IsBlank(ComboBoxStatus.Selected.status),
name in ComboBoxName.SelectedItems.name|| IsBlank(ComboBoxName.Selected.name)
)
let me know if you have any doubts or issues