Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I need to write a statement using if in QS.
If order status = ORDERED or NOT SHIPPED then 1 else 0.
How do I write using QS compliant syntax?
Thanks
If([Order Status] = 'ORDERED' Or [Order Status] = 'NOT SHIPPED', 1, 0)