J
Joel Allen
I use this IIF statement. It's works great.
IIf([DrawingStage]="New",[JobInitiatedDate],
IIF ([DrawingStage]="Shipped",[ShippedDate],
IIF ([DrawingStage]="Cancelled",[CancelledDate],
IIF ([DrawingStage]="Released",[ReleasedDate],
))))
But what if I need all 4 of them to be true? I've put "and" in between the
IIF statements and it doesn't seem to work.
Thanks
-Jole
IIf([DrawingStage]="New",[JobInitiatedDate],
IIF ([DrawingStage]="Shipped",[ShippedDate],
IIF ([DrawingStage]="Cancelled",[CancelledDate],
IIF ([DrawingStage]="Released",[ReleasedDate],
))))
But what if I need all 4 of them to be true? I've put "and" in between the
IIF statements and it doesn't seem to work.
Thanks
-Jole