John,
With a formula, for a string in A1:
=" " & A1
Copy down to match your cells, then copy / pastespecial values and get rid of your original values.
With a macro, select the cells that you want to change, and run this macro
Sub Add3Spaces()
Dim myCell As Range
For Each myCell In Selection
myCell.Value = " " & myCell.Value
Next myCell
End Sub
HTH,
Bernie
MS Excel MVP
"John Grossman" wrote in message ...
How do I do F2 - home - add 3 spaces and enter.
Don't want it to carry over name I'm editing - each row different
|