Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Can you use a WHERE MATCH statement in an expression?
I tried the following: WHERE MATCH ( {$<OrderType={15}>} SupplierName )
But it didn't work.
I wanted the table to show the supplierNAme for all orders with type 15. Is there any other way to make this selection in a table?
Thank you!
try this
if(OrderType=15,SupplierName )
Thank you, it worked!