How to combine ISBLANK and OR

Hello,
I am trying to write a slice that will allow me to filter my UX view to instances where a column is either blank or is “Pending”. The other options for this column are “Denied”,“Canceled”, and “Accepted”.

If someone has already answered this, can you please point me to the thread?
If not, I appreciate any help.

Thank you

Solved Solved
0 2 295
1 ACCEPTED SOLUTION

OR ( ISBLANK([ColumnName]), [ColumnName] = “Pending” )

View solution in original post

2 REPLIES 2

OR ( ISBLANK([ColumnName]), [ColumnName] = “Pending” )

Thank you! That worked perfectly. My problem before was putting ISBLANK first, then it was too many parenthesis!

Thank you again

Top Labels in this Space