How to add leading zeros from a number format to create a text number format

I have 1 column (Georeference) and virtual column of (Pole number). I want to set virtual column (Pole number) to a 7 digit text number whereas leading zeros will be expected.

Sample
Georeference: 123456
Polenumber: 0123456

How to set a formula in the virtual column in order a 7 digit with leading zeros will be reflected?

Thanks

Solved Solved
0 3 1,801
1 ACCEPTED SOLUTION

try

RIGHT("" & (10000000 + [Georeference]), 7)

View solution in original post

3 REPLIES 3

try

RIGHT("" & (10000000 + [Georeference]), 7)

I loved that solution. Super smart. Thanks

Great! It works!

Thank you so much.

Top Labels in this Space