Add extra word

If I am using the following code

currency1.text = DefineEncoding(rs2.Field("currency").stringvalue, encodings.UTF8)

currency gives a “$” symbol, what do I need to add to display “each” after the “$” symbol

currency1.text = DefineEncoding(rs2.Field("currency").stringvalue, encodings.UTF8) + " each"

Thanks Wayne.

Doesn’t the dollar symbol precede the value, and the word each come after the value?
$10 each

The only thing I can see coming out of your format would be:
$ each 10 or 10$ each both of which I’m pretty sure are not correct, even in AUD.

EDIT: After some googling, I’ve found three possible AUD formats: $10; A$ 10; 10 AUD

I agree.

currency1.text = DefineEncoding(rs2.Field("currency").stringvalue, encodings.UTF8) + Format(<thePrice>, "##,###.00") +  " each"

Would be much better.

I have 3 columns labeled - No. - $ each - $ Total

eg 3 at 10 = 30

The $ sign is configurable in the preferences settings as well as the € and the £