Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working in SSRS 2005.

I am trying to format numbers into two decimal places. When I add N2 in the format property of text box, all the numbers are getting two decimal values (1 will be 1.00). However, I need to format to two decimal only if it has a decimal value.

How do I achieve this? Please help..

Thanks

Lijo

share|improve this question

1 Answer

Try the custom format string

#.##

This should display the decimal places only if they are present

share|improve this answer
Thank you.... Thos who are looking for it, search with "Custom Numeric Format Strings" – Lijo Sep 27 '10 at 7:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.