Public Sub ReFormattingPhoneNumbers()
Dim cellCount As Long
Dim lastCell As Long
lastCell = Range("A" & Rows.Count).End(xlUp).Row
For cellCount = 2 To lastCell
Cells(cellCount, 1).Value = Replace(Cells(cellCount, 1).Value, "(", "")
Cells(cellCount, 1).Value = Replace(Cells(cellCount, 1).Value, ")", "")
Cells(cellCount, 1).Value = Replace(Cells(cellCount, 1).Value, " ", "")
Cells(cellCount, 1).Value = Replace(Cells(cellCount, 1).Value, "+", "")
Next cellCount
End Sub