how to extract certain info for a cell - between a "," and a ";"?

JOEODC

New Member
Joined
Oct 2, 2012
Messages
8
hi!
i have a series of cells with text that looks like this
10,11.13;
5,155.07;
144,.89;
what formula (or formula combinations) can i use to get the info between the "," and the ";" into another cell?
thanks so much for your help!
=)

so for the above 3 cells i would want the
11.13
155.07
.89
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
Welcome to the board

Try
=SUBSTITUTE(REPLACE(A1,1,FIND(",",A1),""),";","")

If you want the resulting text string to be converted to a number, just add+0
=SUBSTITUTE(REPLACE(A1,1,FIND(",",A1),""),";","")+0
 
Upvote 0
thanks soo much for all the help!!!!!

also - im sure this is easy - but what is the easiest way to get the numbers in front of the "," i tried a simple left formula - but the numbers are different digits.
thanks!!!!
 
Upvote 0

Forum statistics

Threads
1,214,522
Messages
6,120,025
Members
448,939
Latest member
Leon Leenders

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