Apr 23, 2008 #1 DSaba10 Programmer Nov 15, 2007 35 US This is probably a pretty noob like question, but I have a field with numbers that need to be zero filled to be exactly 10 digits... any ideas? Thanks! -Doug
This is probably a pretty noob like question, but I have a field with numbers that need to be zero filled to be exactly 10 digits... any ideas? Thanks! -Doug
Apr 23, 2008 #2 genomon Programmer Aug 20, 2001 2,449 US You will have to store it as a string. Then something like strVariable = Format(strVariable, "0000000000")? "Artificial Intelligence is no match for Natural Stupidity" Upvote 0 Downvote
You will have to store it as a string. Then something like strVariable = Format(strVariable, "0000000000")? "Artificial Intelligence is no match for Natural Stupidity"