Display 3 decimals in combo box

G

Guest

I have a combo box with 2 columns. The first is a text column, the second is currency. The combo box fills from a table with the same field structure. In the table, the currency field holds a 3 decimal value. In the combo box the currency field displays only as 2 decimals. I need it to display in 3. Any ideas

Thanks
Mary
 
G

Gerald Stanley

I am guessing here that this may be due to the computer's
Regional Settings. In the RowSource SQL, try using the
format function specifying 3 decimal places e.g.
SELECT textColumn, Format(currencyColumn, "#,##0.000") FROM etc

Hope This Helps
Gerald Stanley MCSD
-----Original Message-----
I have a combo box with 2 columns. The first is a text
column, the second is currency. The combo box fills from a
table with the same field structure. In the table, the
currency field holds a 3 decimal value. In the combo box
the currency field displays only as 2 decimals. I need it
to display in 3. Any ideas?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top