Sep 05, 2021 12:37 PM
How can I display numbers with 3 digit all the time ?
Like 1, 2, 3, 10, 125 → 001, 002, 003, 010, 125
Pierre,
Solved! Go to Solution.
Sep 05, 2021 01:20 PM
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.
Sep 05, 2021 01:20 PM
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.
Sep 05, 2021 01:31 PM
Right, so if you need to do any subsequent adjustments to the data, just wrap the field reference inside a VALUE() formula.
Sep 06, 2021 02:37 AM
Thank’s a lot guys ! :grinning_face_with_big_eyes: