Answered
Add zeroes to field value
How do I add 5 zeroes to field value, so when I input 1 it shows 00001 or 23 show as 00023?
How do I add 5 zeroes to field value, so when I input 1 it shows 00001 or 23 show as 00023?
You can use this as custom format script:
event.value = ("00000" + event.value).slice(-5);
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.