HI All,
I have a gallery with four toggles. I would like to filter the gallery with a combination of all four. I am currently using the following:
With({zFilter : Filter(tbl,Assigned="Person")},
Filter(zFilter,
If(TogPrep.Value = true,'Column'="In Preparation",true) ||
If(TogAwaiting.Value = true,'Column'="Awaiting Approval",true) ||
If(TogApproved.Value = true,'Column'="Approved",true) ||
If(TogCompleted.Value = true,'Column'="Completed",true)
)
)
It will filter but only one at time. Any help would be appreciated.