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

Filtering on decimal values

jjimenez
8 - Asteroid

Hello!

 

Is there a formula I could create in the filters tool or other tool that can extract from a large database decimal values that end in $x.19, $x.25, $x.29, $x.35, and $x.39?

(i.e. $1.19, $2.25, $2.29, $3.35, $5.39, etc.)

 

Any help with this will be greatly appreciated. 

3 REPLIES 3
alexnajm
18 - Pollux
18 - Pollux

EndsWith(ToString([Data],".19") OR EndsWith(ToString([Data],".25") and so on should work

OTrieger
14 - Magnetar

@jjimenez 
In the Custom Filter you can use REGEX so if the above will not work you can try REGEX match

CoG
14 - Magnetar

Similarly, you can use Right([Data],3) in (".19", ".25", ".35", ".39")

Labels
Top Solution Authors