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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
EKotze1615216504
Contributor
Contributor

Not equals to :(

Hi All

I am pulling my hair out and can't seem to find a working solution for what seems to be a simple problem.

I need to filter out all IDs starting with 7.

So something like ROWID.substr(0,1) != '7'

Thank you for the help

Regards

Edward

Labels (2)
1 Solution

Accepted Solutions
Anonymous
Not applicable

You can also change your code to:

​!ROWID.substring(0, 1).equals("7")

View solution in original post

4 Replies
Anonymous
Not applicable

Hello Edward,

could you please try the below expression

ROWID.startsWith("7")

Anonymous
Not applicable

You can also change your code to:

​!ROWID.substring(0, 1).equals("7")

EKotze1615216504
Contributor
Contributor
Author

Thank you for the reply but this passes IDs starting with "7" I need to pass all IDs that DO NOT start with "7"

Anonymous
Not applicable

please try :

!ROWID.startsWith("7")