Apr 23, 2008 #1 DSaba10 Programmer Joined Nov 15, 2007 Messages 35 Location 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 Joined Aug 20, 2001 Messages 2,449 Location 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"