Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Where match

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!

 

1 Solution

Accepted Solutions
arulsettu
Master III
Master III

try this

if(OrderType=15,SupplierName )

View solution in original post

2 Replies
arulsettu
Master III
Master III

try this

if(OrderType=15,SupplierName )

Anonymous
Not applicable
Author

Thank you, it worked!