Let’s talk Alteryx Copilot. Join the live AMA event to connect with the Alteryx team, ask questions, and hear how others are exploring what Copilot can do. Have Copilot questions? Ask here!
Start Free Trial

Alteryx Designer Desktop Discussions

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

How to round off an decimal to a whole number

nazuk
8 - Asteroid

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 REPLY 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

Labels
Top Solution Authors