I have a issue in SSRS when I use expression to use Round function
I need get the value Round down but always is up
I’ve the following expresion 3 – (4 *.32) = 1.72 using a round(3 – (4 *.32)) always I get 2 but I need get 1
What I ‘m using in a bad way?
Thanks
if you just need to get a whole number try casting to int it should always round up to the nearest whole number other use Math.Round()
http://msdn.microsoft.com/en-us/library/aa340227(v=VS.71).aspx