Click here to Skip to main content
15,909,030 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
In SSRS, I want to round 1174.50 to 1175.00 , How same can be done?

What I have tried:

=Format((Sum(Fields!TotalDocPrice.Value)),0.00)
But this brings only 1175 instead of 1175.00
Posted
Updated 14-Jun-18 4:08am

1 solution

Set the expression to:
=Round(Sum(Fields!TotalDocPrice.Value), 2)
Then use the "Number" page on the textbox properties to format the number with two decimal places.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900