Help

Re: Format '1' --> '001' Formula?

Solved
Jump to Solution
654 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Pierre1
4 - Data Explorer
4 - Data Explorer

How can I display numbers with 3 digit all the time ?
Like 1, 2, 3, 10, 125 → 001, 002, 003, 010, 125

Pierre,

1 Solution

Accepted Solutions
Kamille_Parks
16 - Uranus
16 - Uranus
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.

See Solution in Thread

3 Replies 3
Kamille_Parks
16 - Uranus
16 - Uranus
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.

Thank’s a lot guys ! :grinning_face_with_big_eyes: