Help With cleaning data to a specific description

gavinmelville1

New Member
Joined
Nov 6, 2018
Messages
1
Hello,

I have a data set of ~2500 rows, the data im concerned with is the description. The description has large variations within the data set, i am looking to consolidate the descriptions to a common description.

For example :
*********
Z99 2017 343199 343199 2016/2017 - COLD START CONT 3164199 6290 9754 738 SH831194 SH831194
Z99 1900 381669 381669 2017/2018 - COLD START 3164199 6290 9754 35225 SH831194 SH831194
Z99 1900 381669 381669 2017/2018 - COLD START 3164199 6290 9754 688.08 SH831194 SH831194
Z99 1900 381669 381669 2017/2018 - COLD START 3164199 6290 9754 687.5 SH831194 SH831194


I would want to consolidate the descriptions (2016/2017 - Cold Start Cont.) & (2017/2018 - Cold Start) both to (Cold Start).

This is a simple example as there are many variations within the database.

Notes: Im amateur at VBA but am willing to venture that course

Thank you in Advance! :nya:
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Hi

Code:
=REPLACE(A1,SEARCH("COLD START",A1)-12,12,"")
 
Upvote 0

Forum statistics

Threads
1,223,214
Messages
6,170,774
Members
452,353
Latest member
strainu

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