We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

SQL Sintaxys - Field NOT LIKE 'abc%'

GusDC
7 - Meteor

Hi guys,

 

Wich is the similar sintaxis in Alteryx of this not like 'ABC%' in SQL? I need to put in a filter tool.

 

Thanks.

5 REPLIES 5
binuacs
21 - Polaris

@GusDC The !StartsWith([Field], ‘ABC’) will have the same functionality 

simonaubert_bd
13 - Pulsar

Hello. Can you try that :  left([myfield],3)!='ABC' ?

geraldo
13 - Pulsar

 

@GusDC 

 

If you want to explore with regex it can be like this:

 

insensitive case:

REGEX_CountMatches([text], '^ABC') = 0

 

sensitive case:

REGEX_CountMatches([text], '^ABC',0) = 0

 

GusDC
7 - Meteor

Thank you very much Guys!  😊

GusDC
7 - Meteor

Thanks!! :)

Labels
Top Solution Authors