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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

CASE Statement

Hello, I'm wanting to add the below Case statement into qlikview script. Any idea on how to do this?

CASE when COUNT(X.id ) > 1 THEN 'X'
ELSE '' END AS Dual

1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

If(COUNT(X.id ) > 1, 'X', '' ) as Dual


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

If(COUNT(X.id ) > 1, 'X', '' ) as Dual


talk is cheap, supply exceeds demand
Not applicable
Author

Use IF statement in Qlikview and its equality in SQL Case function.