Hi,
I want to round up to an integer, the sum of the values in a given field. What will be the expression for this?
I've tried with this before:
Sum(Round(Fields!MyField.Value, 1))
Format(Sum(Fields!MyField.Value),0)
Sum(Round(Fields!MyField.Value, 0, System.MidpointRounding.AwayFromZero))
The requirements: for example, the numbers 6.1 or 6.4 or 6.8 - I want always display as 7, but I always get 6 as a result..
Thanks.