I have a Choice column that I want to display if either of two conditions are true.
It's an Approver Response column that I want to hide if "Approver Notified" checkbox = false, and Status = "Pending".
So far I have: =if([$ApproverNotified] == false, 'false', 'true').
How would I modify this to Hide if either Approver Notified = false OR Status = "Pending"?
Status is a Choice column.
=if([$ApproverNotified] == false || [$Status] == 'Pending', 'false', 'true'). Let me know if it works for you.