Formatting a Number in String

Hello,
is it possible to set a number in the format: 1 = "001", 2 = "002"?
Thanks for your attention...

Solved Solved
0 5 162
2 ACCEPTED SOLUTIONS

Configure the Number column as above, then use TEXT([Number]) to set the Text column value.

View solution in original post

It doesn't work in CONCATENATE(). You have to use a virtual column as suggested and then in CONCATENATE() you find the desired format.

Thanks for your attention...

View solution in original post

5 REPLIES 5

Steve
Platinum 5
Platinum 5

Here:

Steve_0-1726599398121.png

Thanks for your attention...

My problem is that the number must be displayed in that format in a text column...

Configure the Number column as above, then use TEXT([Number]) to set the Text column value.

But will it also work if I put them in a CONCATENATE?

It doesn't work in CONCATENATE(). You have to use a virtual column as suggested and then in CONCATENATE() you find the desired format.

Thanks for your attention...