Copy from Column F

tpkelley_no

Board Regular
Joined
Oct 14, 2011
Messages
188
Office Version
  1. 2010
Platform
  1. Windows
What would be the best formula to do the following?

The following is kept in column “F”:

18 AFL Popup AFLAC INC @ $57.4936



I would the “18” to copy in column “C” same row (This is qty). the stock symbol “AFL” in Colum “D” , and price “$57.4936” in Colum “E”. I want the end results to look like this.

C D E

qtySymbleCost
18AFL57.4936
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Maybe this...
Book1
CDE
2qtySymbleCost
318AFL $57.4936
Sheet1
Cell Formulas
RangeFormula
C3C3=LEFT(F3,FIND(" ",F3,1))
D3D3=MID(F3,FIND(" ",F3)+1,FIND(" ",F3,FIND(" ",F3)+1)-FIND(" ",F3))
E3E3=TRIM(RIGHT(SUBSTITUTE(F3," ",REPT(" ",LEN(F3))),LEN(F3)))
 
Upvote 0
Only one sample data. Try this
Book1
CDEF
1qtySymbleCost
218AFL57.493618 AFL Popup AFLAC INC @ $57.4936
Sheet1
Cell Formulas
RangeFormula
C2C2=LEFT(F2,FIND(" ",F2,1))
D2D2=TRIM(MID(SUBSTITUTE(F2," ",REPT(" ",LEN(F2))), LEN(F2)+1, LEN(F2)))
E2E2=TRIM(RIGHT(SUBSTITUTE(F2,"$",REPT(" ",LEN(F2))),LEN(F2)))
 
Upvote 0

Forum statistics

Threads
1,214,987
Messages
6,122,613
Members
449,090
Latest member
vivek chauhan

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