Excel – Adding a space to the beginning of every cell in excel

microsoft excel

I have a column of data, and I would like to simply add a space to the beginning of each cell. How can I do this?

It should be like this:

Original:

1
2
3
4

After:

 1
 2
 3
 4

Best Answer

Assuming the data is in column A. In an empty column enter this formula in the first row:

=" "&A1
  • Copy down as far as the data in column A.
  • Copy the result of the formulas
  • Use paste special > Values to paste the data into column A
  • delete the helper formulas.
Related Question