Hi,
I have a Gallery that I'd like to filter. I currently have:
Filter(
MIS_Task_Tables,
Staff = 'Staff (MIS_Task_Tables)'.'NAME',
Status (cr74f_status)' = 'Status (MIS_Task_Tables)'.'Awaiting Allocation'
)
And that works fine, but I'd like to be able to search 'In progress' in the status column as well. So in English, 'filter the task table by Staff Column/NAME, AND Status Column/Awaiting Allocation OR In Progress'
Thanks