Formatting numbers

I’ve got a column will all digits in the format of ##########. I would like to add a virtual column to reformat the numbers to ###-###-####. I am unclear as to what expression I need to input for the formula in the virtual column.

Solved Solved
0 1 982
1 ACCEPTED SOLUTION

Please try

CONCATENATE(LEFT([InputNumber],3), “-”, MID([InputNumber],4,3), “-”, RIGHT([InputNumber],4))

Please take a look at

View solution in original post

1 REPLY 1

Please try

CONCATENATE(LEFT([InputNumber],3), “-”, MID([InputNumber],4,3), “-”, RIGHT([InputNumber],4))

Please take a look at

Top Labels in this Space