Reputation: 123
I'm using Crystal report to generate reports to my c# application, But the
decimal fields displays as #####. I'm using VS 2010 professional, .Net 4.5 and
SAP Crystal Reports, developer version for Microsoft Visual Studio SP5.
How to fix this problem??
Thanks in advance.
Upvotes: 2
Views: 3092
Reputation: 118937
Crystal Reports
(and also Microsoft Excel) displays hashes when the content is too large to fit in the container. In this case your decimal number likely has too many digits to fit. There are two simlpe solutions:
1.23456789
will show as 1.23
.Upvotes: 3