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 292
1 REPLY 1

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

Top Labels in this Space