Jan 14, 2002 #1 Daya100 Programmer Jan 11, 2002 21 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 Dec 14, 2000 396 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