Skip to main content
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

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


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
Gysbert_Wassenaar

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.