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 300
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