Link to home
Start Free TrialLog in
Avatar of rgb192
rgb192Flag for United States of America

asked on

make-3-columns-date-price-description

using excel 2007 on windows

make-3-columns-date-price-descri.xlsx

I will have many columns so please set a rule

make-3-columns-date-price-description
Avatar of gplana
gplana
Flag of Spain image

put on B1 cell this formula:
=LEFT(A1;5)

put on C1 cell this formula:
=MID(A1;7;6)

put on D1 cell this formula:
=MID(A1;14;9999)

Then select cells B1 to D1 and expand them to last row you have data.

Regards.
Avatar of rgb192

ASKER

error when I type in formula in b1
User generated image
Hello,

assuming that the date will always be only 5 characters but also assuming that the price will not always be three digits before the decimal point, I think you'll need a different logic for the price column.

So, for the date

=LEFT(A1,5)

For the price (assuming that there will always be a decimal point, like 0.99, get the string starting after the first blank and up to two characters after the first dot.

=MID(A1,FIND(" ",A1)+1,FIND(".",A1)-FIND(" ",A1)+2)+0

For the description: get the string that starts 4 characters after the first dot

=MID(A1,FIND(".",A1)+4,9999)

Note that depending on your regional settings you may need to replace the comma with a semicolon.

cheers, teylyn
Really strange. I'm sending an Excel to you. I use Excel in spanish so my names on the formulas are not the same, maybe there is a little difference with the translation I made. Please see if the Excel attached is working on your side.
make-3-columns-date-price-descri.xlsx
SOLUTION
Avatar of Ingeborg Hawighorst (Microsoft MVP / EE MVE)
Ingeborg Hawighorst (Microsoft MVP / EE MVE)
Flag of New Zealand image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of rgb192

ASKER

=LEFT(A1,5)

works in the first row

I have many rows

I remember in a previous excel I could see an input bar above row1

looks like a browser url input bar
Avatar of rgb192

ASKER

gplana
looks nice

how can I see the formulas and apply the formulas after I add more rows.
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of rgb192

ASKER

Thanks for teaching me to expand the area.