Currency Issue

Shooting Star

Registered User.
Local time
Today, 07:37
Joined
Dec 22, 2008
Messages
15
Hi,

I have a list box, with two columns: The first has the name of a carpet, and the second has the price. I have a textbox which looks up the price of the carpet selected:

E.g.
[Listbox].[Column](1)

However, the textbox shows the value of the carpet, but not the £ sign next to it. The column with the price is set to Currency data type in the table, and the textbox is set to currency.

Please help!
 
Try

=Format([Listbox].[Column](1), "Currency")
 
Thank you so much, it works perfectly now! :D
 

Users who are viewing this thread

Back
Top Bottom