Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I subtract 2 columns in straight table, and sometimes when the numbers are the same I get 0 and sometime I get -0
I also made sure that I dont have decimals in the columns I used for subtraction!
How is this possible?
Thank you.
May be try this
Round(Num1) - Round(Num2)
or
Round(Num1 - Num2)
This is weird behavior until unless you have long number? Do you have same values from 2 columns are more than that?
It does work, Thank you.