Reputation: 157
what is the formula for removing these first strings that are numbers from all columns?
Upvotes: 0
Views: 29
Reputation: 50200
You can use some string functions to pull this off:
=RIGHT(A1, LEN(A1)-FIND(" ", A1))
Upvotes: 1