I redesigned a Sales Invoice report in Visual Studio. It seems to be functioning correctly but the totals and other textboxes that contain currency needs to be formatted with 2 decimal places. Right now it is all integer numbers. How do I do this? I have looked under properties everywhere but I do not see anything that changes the format of the number. :-k
0
Comments
BR
Torben
Sales_Invoice_Line_Amount
with
Sales_Invoice_Line_AmountFormat AKA "=First(Fields!VATAmountLine__VAT_Amount__Control117Format.Value)"
Now when the invoice prints, it shows this:
#,##0.00
I tried to expand the width of the table column but it still shows the same (#,##0.00).
Format: =Fields!Sales_Invoice_Line_AmountFormat
Value: =Fields!Sales_Invoice_Line_Amount
Format field Sales_Invoice_Line_AmountFormat contains the decimal information, like what you see: #,##0.00
Value should then still be your decimal value: Sales_Invoice_Line_Amount
BR
Torben