I have a subtotal value and a sales tax value that I need to add together for the total amount due, but it concatenates the values and doesn't add them together.
SyntaxEditor Code Snippet
FormatCurrency(GetInvoiceById.List.Current.Invoice.Subtotal,"$",2,".","" +GetInvoiceById.List.Current.Invoice.TotalTax)
how do I get the new total amount due to be those two values combined?
Does this work?
FormatCurrency(GetInvoiceById.List.Current.Invoice.Subtotal + GetInvoiceById.List.Current.Invoice.TotalTax,"$",2,".",",")
Cheers,R
Rodrigo Coutinho wrote:
Yes that did what I needed! thank you!