Alteryx Designer Desktop Discussions

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

Roundup Issue

ShaileshDevadiga
7 - Meteor

Hi,

 

I am trying to roundup to 4 decimal , in excel it shows different as compared to Alteryx.
In excel I am trying to reduce to 4 decimal using increase/ decrease decimal function 
In Alteryx I am using round(Average),0.0001)
One is Bold is showing different number, am I using wrong formula in Alteryx

Actual Avg PriceIn Excel rounded up to 4 decimalIn Alteryx, rounded upto 4
1414.0459001414.04591414.0459
1422.9315001422.93151422.9315
1432.7625001432.76251432.7625
1438.8965251438.89651438.8965
1444.4229601444.42301444.4230
1444.0878501444.08791444.0878
1445.6797571445.67981445.6798
1450.5305881450.53061450.5306
1452.6288891452.62891452.6289
1454.2400201454.24001454.2400
2 REPLIES 2
gautiergodard
13 - Pulsar

Hey @ShaileshDevadiga 

You can use the solution below to do the trick.

round(round([Actual Avg Price],.00001),.0001)

gautiergodard_0-1668955186358.png

Also including a related article that explains how this works: Solved: Alteryx Odd Behavior - Alteryx Community

 

 

 

ShaileshDevadiga
7 - Meteor

@gautiergodard  - Thanks a lot it worked, Thanks for sharing related article for clear understanding 

Labels