Free Trial

Alteryx Designer Desktop Discussions

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

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
17 - Castor
17 - Castor

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

OTrieger
12 - Quasar

@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