i NEED HELP WITH "FORMAT"

In a source expression I am trying to use ‘$’+ format(number)+’ + Sales Tax’ All works fine if the number is ####.## but if the number only has one # to the right of the decimal like 345.30 I get $ 345.3 + Sales Tax and I need $ 345.30 + Sales Tax Any ideas how to easily set the format to get the desired results?

Maybe try converting the number to a string?!

I had the same problem. I think this is what you’re looking for: FORMAT( “Amount Including Tax”, 0, ‘<Precision,2:2><Standard Format,3>’ ) --Michael

Thanks MIchael-- That did the trick!