Skip to main content
Announcements
Global Transformation Awards! Applications are now open. Submit Entry
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")