Replace "dash" with "space"

  • Thread starter Thread starter Turkey
  • Start date Start date
T

Turkey

What is the formula to replace "-" with space starting to count from the
right side. I need this to be done in a whole column
 
How about a nice macro?

Sub replacedashwithspace()
Columns("c").Replace "-", " "
End Sub
 
Back
Top