combo box display

F

Fred

I've got a combo box that displays 3 numerical columns. How do I control
the display of the dropdown columns so the first column is Fixed to 2
decimal places, 2nd is Fixed to 3 decimal places, etc..

TIA,
Fred
 
K

Ken Snell [MVP]

Use a query as the combo box's RowSource. In the query, set the format for
the desired field by right-clicking on the field and selecting Properties.
You can set the format there.
 
F

Fred

I've tried that and it doesn't seem to take. I'll change the format in the
query via the method you suggested and when I try it out nothing changes.
When I go back to see the formatting in the query it goes back to being
blank as if nothing was changed in the first place.

Fred
 
K

Ken Snell [MVP]

Not sure why that isn't working for you, but the alternative way is to use a
calculated field in place of the original field, and use the Format function
in the calculated field to set the format of the original field.
 
F

Fred

Thanks Ken

Ken Snell said:
Not sure why that isn't working for you, but the alternative way is to use a
calculated field in place of the original field, and use the Format function
in the calculated field to set the format of the original field.
 

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