Alteryx Designer Desktop Discussions

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

How to round off an decimal to a whole number

nazuk
Asteroide

Hello All,

 

Need help in knowing how i can round off my decimal (double) data type to a whole number. So i have a currency as a column whenever currency is JPY i have round off it to a whole number?

1 RESPUESTA 1
RolandSchubert
16 - Nebula
16 - Nebula

Hi @nazuk ,

 

if I got the point, you want to round values based on the content of a second column, so if [Currency] is 'JPY', round to whole number, for other currencies leave decimal laces as they are. This should be possible using a formula like 

IF [Currency] = 'JPY' THEN
Round([Value], 1)
ELSE
[Value]
ENDIF

 

I've attached a sample workflow.

 

Let me know if it works for you.

 

Best,

 

Roland

Etiquetas