Alteryx Designer Desktop Discussions

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

Filter for columns with x.5

df
8 - Asteroid

Hi

 

i want to creat a formular which gives every number with x.5 a Y and without "." a N

how can i do this?

 

RecordID

(Input)

 

Filter

(Output)

  
1 N  
1.5 Y  
2 N  
2.5 Y  
3 N  
3.5 Y  

 

 

1 REPLY 1
LordNeilLord
15 - Aurora

Hey @df

 

You can do something like:

 

If [Record] != FLOOR([Record]) Then "Y" Else "N" Endif

 

Floor.PNG

Labels