copy partial cell content

darkrealms

New Member
Joined
Jun 22, 2006
Messages
2
With an unformated (general) cell, I'm not sure how to copy part of the content of a cell.
Example:
1382 Dow, John, WD
1685 Smith, George - FD

What I would like to get out of it is: Dow, John, WD and Smith, George - FD.
I have tried things like =LEFT((D3),-5) instead of =LEFT((D3),5) as an alternate, but haven't found a formating style with the subtraction anywhere in the code to get it to work. Not sure what else to try. I know how to take a piece out of say a date but not out of text.

If this has already been covered please link it for me, I tried searching but came up with nothing that I could use.

Thanks
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Try this

How about
=MID(D3,FIND(" ",D3)+1,LEN(D3))?

This should give you what you want assuming the text you want is always right after the first space in the cell.
 
Upvote 0
Andrew Poulsom thank you! No I hadn't tried the LEN statement, I had tried something similar without it.

ctrlaltdel thanks for the responce, I agree Andrew's is a little easier : )
 
Upvote 0

Forum statistics

Threads
1,214,940
Messages
6,122,361
Members
449,080
Latest member
Armadillos

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top