Skip to main content

How can I display numbers with 3 digit all the time ?

Like 1, 2, 3, 10, 125 → 001, 002, 003, 010, 125


Pierre,

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.


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.


Right, so if you need to do any subsequent adjustments to the data, just wrap the field reference inside a VALUE() formula.


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.


Thank’s a lot guys ! :grinning_face_with_big_eyes:


Reply