Format 1.34.36.12 to 01343612

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

Guest

Does any on know how to format 1.34.36.12 to look like 01343612
I tried: Format([source],"00000000") in Access with no resolute.
 
Does any on know how to format 1.34.36.12 to look like 01343612
I tried: Format([source],"00000000") in Access with no resolute.

If your version of Access supports the Replace function:

=Format(Replace([Source],".",""),"00000000")
 
Thank you very much, Kevin


fredg said:
Does any on know how to format 1.34.36.12 to look like 01343612
I tried: Format([source],"00000000") in Access with no resolute.

If your version of Access supports the Replace function:

=Format(Replace([Source],".",""),"00000000")
 

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