Use the Edit | Replace... menu command.
Will the dash always be in position 4 and the space in position 9?
Mark's suggestion is good. If you will be needing to repeat the task, you can do it in VBA. If you don't need to repeat the task, just highlight your column, go to Edit - Replace, then type in a "-" (no quotes), and hit "Replace All." Repeat this step, but just type one space into the "find what" box, and hit replace all again. I simply recorded these actions (my data was in column B), and the result is below:
Columns("B:B").Select
Selection.Replace What:="-", Replacement:="", LookAt:=xlPart, _
SearchOrder:=xlByColumns, MatchCase:=False
Selection.Replace What:=" ", Replacement:="", LookAt:=xlPart, _
SearchOrder:=xlByColumns, MatchCase:=False
Hope this helps,
Russell
IT WORKED AND I OWE YOU GUYS ! IT WAS SO SIMPLE !