billandrew
Well-known Member
- Joined
- Mar 9, 2014
- Messages
- 743
looking to Split Data in Column A into column b and column c.
the below removes the text to the left of the coma.
Thanks
the below removes the text to the left of the coma.
Thanks
Code:
Sub SplitComma()
Dim d As Range
For Each d In Range("A2", Range("A" & Rows.Count).End(xlUp))
d.Value = Split(d.Value, ", ")(1)
Next d
End Sub