Extract all text after , in a cell

Dan_D

Board Regular
Joined
Oct 26, 2009
Messages
78
Hi all,

I'm trying to extract all the text in a cell which is on the right side of a comma (,)

Currently I am using this formula,

=RIGHT(C1,FIND(",",C1)-1)

However it sometimes is missing some of the data after the , and sometimes pulling a few characters before the ,

any suggestions on how to correct my formula please?

Thanks in advance.
 

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
Hi VoG,

many thanks for your help, I have 2 questions for you please.

1- This copies the data but can it "take" the data (so it no longer exists in the original cell?
2. if the cell has more then 1 x , can it simply take the data after the last ,?

Thanks for your kind assistance.
 
Upvote 0
Hi.

1. A formula cannot do that. You would need VBA.

2. Try

=TRIM(RIGHT(SUBSTITUTE(C1,",",REPT(" ",255)),255))
 
Upvote 0
Hi VoG,

Many thanks for all your help. Instead of taking out the data I could adjust the formula to pull from the LEFT of the , as opposed to the right.
 
Upvote 0
Try like this

Sheet1

*CDE
1abc, defg,hijkl, mnopmnopabc, defg,hijkl,

<colgroup><col style="font-weight:bold; width:30px; "><col style="width:191px;"><col style="width:88px;"><col style="width:166px;"></colgroup><tbody>
</tbody>

Spreadsheet Formulas
CellFormula
D1=TRIM(RIGHT(SUBSTITUTE(C1,",",REPT(" ",255)),255))
E1=SUBSTITUTE(C1,D1,"")

<tbody>
</tbody>

<tbody>
</tbody>


Excel tables to the web >> Excel Jeanie HTML 4


Thank you Sir JEE. This is very helpful for me.
 
Upvote 0
Hi,

I'm trying this on this string:

39685~54790@110297535758561678@FULL@0.00@

Sometimes the string may be:

25364~39685~54790@110297535758561678@FULL@0.00@

<tbody>
</tbody>

Trying to extract everything after the last "~" using:

=TRIM(RIGHT(SUBSTITUTE(C1,"~",REPT(" ",255)),255))

Excel says there's an error in the formula when I commit the cell. I'm using Excel 2010.

Can anyone help? Also thanks in advance!

<tbody>
</tbody>
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,789
Messages
6,121,590
Members
449,039
Latest member
Arbind kumar

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