Question...

  • Thread starter Thread starter Chad
  • Start date Start date
C

Chad

I have a field where I need to always have 9 digits… however, the value
varies…sometimes 100.00, sometime 50.00… but I need the field to prefilled
“0†in the empty spaces… i.e. “00000100.00†or “0000050.00â€. Do you know how
to make access do that?
 
Create a query and use the Format function (not the Format property) to
return the number as a string.

Use the query wherever you would otherwise have used the table.
 
Great Thanks!

Douglas J. Steele said:
Create a query and use the Format function (not the Format property) to
return the number as a string.

Use the query wherever you would otherwise have used the table.
 
Can you break this down a bit more for me... I need the "Idiot’s Guide"
version on how to achieve this. Thanks for your help! I appreciate it!
 
Sorry... but I'm learning! :) Where do I apply the formula you gave me?

Thanks for your help!
 
Create a query as usual and make sure you've added the field in question.

Replace the name of the field on the "Field" row with Format([NameOfField],
"00000000.00")
 

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