Hi,
I have a form where managers have to provide their approval for certain submissions. I have an approval status column for each manager in my table (e.g. manager1Decision, manager2Decision, etc up to 8). The drop-down selection for each of these is:
"" (blank)
Approved
Rejected
Needs Discussion
I am adding a filter to allow them to filter based on their approval status. In my filter, I can return all other values except the "" blank field. I would like to be able to return those records that they have not provided an approval status for so they can focus on those as needed. Below is my current formula and I have no idea where to go from here.
Filter(DataTable,'manager1Decision' = dropdownmanager1.Selected.Value)
Any assistance would be greatly appreciated. Thanks!