How can I display numbers with 3 digit all the time ?
Like 1, 2, 3, 10, 125 → 001, 002, 003, 010, 125
Pierre,
How can I display numbers with 3 digit all the time ?
Like 1, 2, 3, 10, 125 → 001, 002, 003, 010, 125
Pierre,
Best answer by Kamille_Parks11
RIGHT("000" & {Field Name with Original Number}, 3)
^ that will get you the format you want, but the result will be treated as a string as opposed to a number.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.