Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Please tell me how can the "in" clause is used in qlikview?
Is there any option available to use the "in" clause in qlikview?
Hi,
if you are looking for
Field in ('A','B','C')
you could use
match(Field, 'A','B','C')>=1
Load a field
Use where exists()
Fabrice
I assume you mean the SQL "in". If correct, see match() function:
match(field, 'value1', 'value2', 'value3',...)
It returns 0 (false) if none of the values exist in the field. Otherwise it returns the number of the matching value, which is not 0 (hence "true").
Regards,
Michael
Thank you very much.
Match function did worked.