How can I write an AND/OR expression? Here's...

How can I write an AND/OR expression?

Here’s what I want to do:

OR([Evacuating]=“Yes, Need Transport”, [ReadyForTransport]=true)

AND(NOT([TransportStatusTO]=“Delivered to Evac Center”)

0 1 290
1 REPLY 1

Try this: AND( OR( B, C), NOT(D)) Where A, B, C, D are the conditions

Top Labels in this Space