How to retrieve the value?

E

Eric

Does anyone have any suggestions on how to retrieve the first value after the
first ";"? On following example, I would like to retrieve 427,75 value, and
return it into cell B1 427.75.

04.01.2005;427,75;5,8600;2506,62;104,27;44601,49;1,3295;321,74

Does anyone have any suggestions on how to do it in Excel?
Thanks in advance for any suggestions
Eric
 
D

David Biddulph

Data/ Text to Columns/ Delimited/ Semi-colon
Skip columns that you don't want.
 
J

Jacob Skaria

=--SUBSTITUTE(LEFT(SUBSTITUTE(MID(A1,FIND(";",A1)+1,255),";",
REPT(" ",255)),255),",",".")

If this post helps click Yes
 
L

Luke M

Bit of a long one, but here a formula that extracts the value between first
semicolon and second, and converts the comma to decimal point:

=VALUE(SUBSTITUTE(MID(A1,FIND(";",A1)+1,FIND(";",A1,FIND(";",A1)+1)-FIND(";",A1)-1),",","."))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top