Copy link to clipboard
Copied
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);
Copy link to clipboard
Copied
You can use this as custom format script:
event.value = ("00000" + event.value).slice(-5);