Hi experts!!
NAV2017.
In the sales invoice report I have le field "Sales Invoice header".Amount
in the table this field is decimal with value= 8.527,00
but the report shows 8527
Why the value has lost the format??
How to change it??
Thanks for all!!
0
Answers
While editing layout in Visual Studio right click on the field, click Text Box Properties, and you will find formatting in Number sectiom
Dynamics NAV, MS SQL Server, Wherescape RED;
PRINCE2 Practitioner - License GR657010572SG
GDPR Certified Data Protection Officer - PECB License DPCDPO1025070-2018-03
Dynamics NAV, MS SQL Server, Wherescape RED;
PRINCE2 Practitioner - License GR657010572SG
GDPR Certified Data Protection Officer - PECB License DPCDPO1025070-2018-03
No PM,please use the forum. || May the <SOLVED>-attribute be in your title!
In your dataset, tou will find something like Amount_SalesInvoiceheader
and another one like Amount_SalesInvoiceheaderFormat
Use the first as your column source expression, and the second as Format source expression as explained by @Slawek_Guzek. Or simply select the cell and hit F4. This will open the text zone properties. Look for Format and set the correct value.
In the properties of the text box was well configured, but still did not show the correct format.
I solved it by changing this code =Code.BlankZero(Code.GetData(60,1))
for this other
=First(Fields!ImporteTotal.Value, "DataSet_Result")