Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Extracting certain data from excel 2

Status
Not open for further replies.

sap1958

Technical User
Oct 22, 2009
138
US
Edit 1 ESC 1 Provider Cerificaton

I want to exclude the Edit 1 ESC. I want to show the following in separate columns:

Code Reason
1 Provider Certification

I am thinking I need a right(len) statement of some type. Any ideas??

 

How about? If [blue]Edit 1 ESC 1 Provider Cerificaton[/blue] is in cell A2:
Code:
=mid(A2,12,1)
=right(A2,Len(A2)-14)


Randy
 



hi,

just ONE cell or a bunch in a column?

same values to remove (Edit 1 ESC) or different?

another option could be Data > Text to columns -- FIXED WIDTH.

Skip,

[glasses]Just traded in my old subtlety...
for a NUANCE![tongue]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top