I need to enumerate some items from 001 to 999
Maybe, if I could set a spinButton like this
spin1.Min = 001
spin1.Max = 999
But Excel does not accept such min value?
How can I do this, pls ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can set min/max to 1/999 integer then handle the values as text
if [A1] = 1 then in Excel
=TEXT(A1,"000")or in VBA use
Format(val, "000")