Hello everyone,
I have been pretty odd behavior from Alteryx on rounding numbers. At first I thought there was something wrong with the calculation, but apparently it is a defect. So I wanted to share this with the community to get feedback. I tested it on version 9.5, 10.5 and 11
so if you take an average of two numbers of (100, and 124.83) it will end up in 112.415. You can either do it manually or use function "average".
Now when you try to round the result to hundredth with round ( [X] , 0.01) it will end up at 112.41 instead of 112.42
Interesting part is if you code the number 112.415 manually then the result of rounding will be 112.42
It gets more interesting when you take the average of 100 and 224.83 instead of 124.83. The result of course is 162.415 and if we round it this time it will end up as 162.42. in other words "whole number" is affecting the decimal rounding which does not make sense to me.
I guess this should be probably a defect on the way that numbers are restored.
Fun fact: we found this issue on Halloween !