Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am trying to apply contains value in my if statement.
if i use [FROM] = '*MANNING*' ==> not working
if i use [FROM] LIKE '*MANNING*' ==> working (But, not sure whether it is filtered correct or not
HI @saivina2920
Try with wildmatch like
Wildmatch(From, '*manning*')
HI @saivina2920
Try with wildmatch like
Wildmatch(From, '*manning*')
Is it used in a LOAD statement or in a SQL SELECT statement?
If it is a SQL SELECT statement then you should use SQL syntax for that database type. LIKE could be a valid statement, but wildmatch() is not.
If it is within a LOAD statement then you cannot use LIKE, it is not a part of the Qlik syntax. You can use wildmatch() instead as @MayilVahanan suggested.
Thanks...we are using LOAD statement..