Skip to main content
Solved

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

  • September 5, 2021
  • 3 replies
  • 52 views

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.

3 replies

Kamille_Parks11
Forum|alt.badge.img+27
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.


Forum|alt.badge.img+17
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.


  • Author
  • New Participant
  • September 6, 2021
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: