Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, I have the following status for my records:
Well, I want to filter each record that contains "BLOQ" inside status value. In SQL exists the "InStr()" function but I haven't found any similar function in qlikview.
where wildmatch(status, '*BLOQ*')
Have a look on match() and wildmatch().
- Marcus
where wildmatch(status, '*BLOQ*')
To find the position of a substring in a string you can use the Index() function in QlikView.
So this would be the equivalent to the SQL InStr() function.
hope this helps
regards
Marco
Many thanks, thats just that i've been triying to find.