Alteryx Designer Desktop Discussions

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

Custom Filter

kadenemcintosh
7 - Meteor

I want to filter a series of account number from a list ranging from 47000 thru 49000. What is the exact formula to use? Keep getting a Parse error.

3 REPLIES 3
Thableaus
17 - Castor
17 - Castor

Hi @kadenemcintosh 

 

If your Account Number is a String, you could use this

 

ToNumber([Field]) >= 47000 AND ToNumber([Field]) <= 49000.

 

That should work.


Cheers,

kadenemcintosh
7 - Meteor

After I filter and have range of accounts. I want to pull only specific accounts next using another filter.

 

Account 47000 and 48000 only using another filter.

Thableaus
17 - Castor
17 - Castor

@kadenemcintosh 

 

Use this:

 

ToNumber([AccountNumber]) IN (47000, 48000)

 

Cheers,

Labels