Hi Everybody,
In RTC Report, we are facing some problem in printing of decimal field in footer of RTC Report.
for Example. Instead of Showing 14.00 its showing as 14. Is there any functions or Properties available In Visual Studio?. But in Body Section its printing correctly as 14.00.
How to fix this?.
0
Comments
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
If you add more fields manually, the property settings automatically done by NAV are (obviously) not retained (padding, formatting, alignment...).
Check out the format property of your working field (that will probably have a value like "mydecimalfield_Format" or so). As you cannot use the same value in the footer section, because "mydecimalfield_Format" is part of the dataset, you can:
-check what's its value in the "about this report" function and copy that value in the format property of the new field.
- familiarize the format property and set it as you prefer (i never remember what are the exact characters for that property :whistle: )
"Never memorize what you can easily find in a book".....Or Mibuso
My Blog
No ](*,)
Using ROUND(Amount, 0.01, '>') in Source Expression Instead of Amount
I hope this clarifies. :thumbsup: :thumbsup: :thumbsup:
As Mirko said, Assign <fieldName>_Format field in Format property
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
I got it result Using ROUND(Amount, 0.01, '>') in Source Expression Instead of Amount
Tks for manikandan,mohana_cse06 and Belias.
(this is for a transfooter with using functions with a hasttable see: [report properties], [code]
See the blog of "Transfooter and Transheader functionality in RDLC(SSRS) reports)
The 2 presents the number behind the comma).
Value field: expression:
="Transport " & FormatNumber(Code.SetRunningTotal( Sum(ReportItems!Sales_Invoice_Line__Line_Amount_.Value), Globals!PageNumber),2)