Jan 14, 2002 #1 Daya100 Programmer Joined Jan 11, 2002 Messages 21 Location US I'm trying to format a number so that it is 4 characters long. For example 1 would be 0001 and 15 would be 0015. How do I do that? Thanks!
I'm trying to format a number so that it is 4 characters long. For example 1 would be 0001 and 15 would be 0015. How do I do that? Thanks!
Jan 14, 2002 #2 hsitz Programmer Joined Dec 14, 2000 Messages 396 Location US If you put "0000" in the format property you should get what you want. E.g., format(15,"0000" will display the number 15 as "0015" -- Herb Upvote 0 Downvote
If you put "0000" in the format property you should get what you want. E.g., format(15,"0000" will display the number 15 as "0015" -- Herb