Good day, I am attempting to sort, filter data from Table based on if specific fields in the table are blank using a drop down. My drop-down items are:
["All","Completed","Requiring Prep","Requiring Scan","Requiring Index", "Requiring QC"]
I am able to get only one of the items in the dropdown to work. Current Gallery Items is :
Sort(Filter(Table1_12,Dropdown1.Selected.Value = "Requiring Prep", IsBlank('Prep Completion Time')),'Date & time received',SortOrder.Descending)
Prep Completion Time is the name of one of Columns I want to filter by.
Whenever I attempt to add additional Drop Down Items, it will not display any data for the dropdown Select value.
An example would be:
Sort(Filter(Table1_12,Dropdown1.Selected.Value = "Requiring Prep", IsBlank('Prep Completion Time') Or Dropdown1.Selected.Value = "Requiring Scan", IsBlank('Scan Completion Time')),'Date & time received',SortOrder.Descending)
For the code above, It will filter data where Prep Completion time is Blank but not for Scan Completion Time
I tried replacing the Or in the code above with a , but that does not display any data
Any help would be greatly appreciated.