Format Number

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In my Access Query I have a column that displays a number that I want to
format in the following manner:

* I would like the 1 to be displayed as 0001, 2 as 0002, ect.......

Thanks in asvance for your help!

Rich
 
I think the Format would do this. You would add a new column to your query
with something like...

NewFieldName: Format([YourNumberFieldName],"0000")
 
Thanks Rick! Works perfectly!

Rick B said:
I think the Format would do this. You would add a new column to your query
with something like...

NewFieldName: Format([YourNumberFieldName],"0000")




--
Rick B



Rich Young said:
In my Access Query I have a column that displays a number that I want to
format in the following manner:

* I would like the 1 to be displayed as 0001, 2 as 0002, ect.......

Thanks in asvance for your help!

Rich
 

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

Back
Top