Replace "dash" with "space"

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
 
D

Don Guillett

How about a nice macro?

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