Sérgio Wilker
Sérgio Wilker

Reputation: 157

Removing these first strings that are Numbers from Columns?

what is the formula for removing these first strings that are numbers from all columns?

IMG

Upvotes: 0

Views: 29

Answers (1)

JNevill
JNevill

Reputation: 50200

You can use some string functions to pull this off:

=RIGHT(A1, LEN(A1)-FIND(" ", A1))

Upvotes: 1

Related Questions