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

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
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,214,920
Messages
6,122,264
Members
449,075
Latest member
staticfluids

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