I have a gallery with the following Items property which enables a search text box and a drop down filter based on a specific Manager field. This all works fine.
SortByColumns(
Search(
Filter(
'IKEA Rota List',
false || IsBlank(ManFilter.Selected.Value) || Manager.Value = ManFilter.Selected.Value
),
NameSearch.Value,
"Title"
),
"Title",
SortOrder.Ascending
)
I want to add a toggle that refers to a Leaver date field. If on then only display records where leaver date is <> Blank (i.e. they are a leaver)
If off then display records where leaver date is blank.
Can someone help me?