I have a navigation that's a gallery (Gallery4) and a dataTable (DataTable6). I am trying to filter the dataTable when an item is clicked in the gallery. I tried the following but I get a squiggly red line under the formula.
'Request Status' is the column name in the DataTable.
The gallery's datasource is a collection called requestStatus.
ClearCollect(requestStatus,
"Awaiting Assignment",
"Pending",
"In Progress",
"Complete"
);
Filter(DataTable6, DataTable6.Selected.'Request Status' = Gallery4.Selected.Value)
What am I doing wrong?