How to remove certain parts of text in an already concatenated column

PilotsWife87

New Member
Joined
Aug 8, 2019
Messages
2
Good Morning,
I need to remove certain text from my line that has already been concatenated.
For Example...This is the concatenated version:

2014 Great Dane Van

<colgroup><col width="144"></colgroup><tbody>
</tbody>

<tbody>
</tbody>


I need to remove "20" and also remove the word "Van" in this column to where it only reads "14 Great Dane".
My original concatenate formula for this column is
=CONCATENATE(D3," ",C3," ",E3)

All help is greatly appreciated in this matter!!


<tbody>
</tbody>
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Welcome to the Board!

Try this:
Code:
=TRIM(SUBSTITUTE(SUBSTITUTE(CONCATENATE(D3," ",C3," ",E3),"20",""),"Van",""))
 
Upvote 0
Thank you so very much!! I appreciate your help! I've been trying to figure this out for a few hours now. You're the best!!
 
Upvote 0

Forum statistics

Threads
1,215,063
Messages
6,122,927
Members
449,094
Latest member
teemeren

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