I have tried using Math.Round & MidpointRounding. This does not appear to do what I need.
Example:
52.34567 rounded to 2 decimals UP = 52.35
1.183 rounded to 2 decimals DOWN = 1.18
Do I need to write a custom function?
Edit:
I should have been more specific.
Sometimes I need a number like 23.567 to round DOWN to 23.56. In this scenario...
Math.Round(dec, 2, MidpointRounding.AwayFromZero) gives 23.57
Math.Round(dec, 2, MidpointRounding.ToEven) gives 23.57
Decimals up to 9 decimal places could come out and need to be rounded to 1, 2, 3 or even 4 decimal places.

Response.Write(Math.Round(52.34567, 2).ToString());Output: 52.35 – McArthey Nov 20 '12 at 21:11Console.WriteLine(Math.Round(52.34567, 2));andConsole.WriteLine(Math.Round(1.183, 2));– rossipedia Nov 20 '12 at 21:12