I'm new to NAV and I'm having trouble with a field in a Sales Invoice Report. The field that should display the unit price seems to cut off the zero at the end of the price. When it is a complete dollar ($43.00) it even cuts off the decimal ($43). I've searched around and seen posts about the SourceExpr but don't even know where to go to see what the settings for those properties.
Any help or guidance would be much obliged. Thanks in advance.
Suds
0
Answers
Probably you'll want to place them at "2:2" where the first 2 is minimum number of decimal places and the second one the maximum number.
|To-Increase|
RIS Plus, LLC
I finally solved the issue by using
my issue now is the numbers printed don't have commas (,) every third digit (ex: 1,000,000,000.00)
any help would be great
I had this issue in NAV 2013 yesterday. I made the following changes which resolved it:
1.) in the "format" property of the field in Visual Studio I typed n2 (see link here for list of formats) http://dynamicsuser.net/blogs/mark_brum ... -rdlc.aspx
2.) I right clicked on the field and went to the expression properties and added the code highlighted in red.
=Code.BlankZero(CDec(Choose(25,Split(Cstr(ReportItems!Stub1_LineAmount.Value),Chr(177)))))
Now the report prints all decimals even if it is .00
Hope this helps someone.