Dear support
I there any possibility how to use function Round in report designer for rounding away from zero?
Now: Round(9002.5) = 9002
I want: Round(9002.5) = 9003
Thank you
Function Round - away from zero
Re: Function Round - away from zero
Hello,
You can use the following expression:
Thank you.
You can use the following expression:
Code: Select all
{Round(9002.5, MidpointRounding.AwayFromZero)}
Re: Function Round - away from zero
great! it works thank you
-
- Posts: 7334
- Joined: Tue Mar 20, 2018 5:34 am
Re: Function Round - away from zero
Hello,
You are welcome.
You are welcome.