Answered
How could I add a 2 digit field which on entering "1" return "01"?
How could I add a 2 digit field which on entering "1" return "01"?
How could I add a 2 digit field which on entering "1" return "01"?
You can use this code as the custom Format script:
if (event.value) event.value = util.printf("%02d", event.value);
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.