VBA Search and Replace with wildcard?

Jadelyn

New Member
Joined
Jun 17, 2015
Messages
11
Hi all,

I am working on a cleanup macro to take the raw report our HRIS spits out (which is incredibly un-user-friendly) and give back a usable table. One part of it is going through the column of employee schedules and changing the codes it starts with to equivalent numerical values - it starts out as "CORP40" for 40 hours/week, "CORP20" for 20 hours/week, etc.

Currently I just have a block of code that runs a find-and-replace for each value that the report currently contains, like so:

Code:
Cells.Replace What:="CORP40", Replacement:="40", LookAt:=xlPart, _        
        SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
        ReplaceFormat:=False
    Cells.Replace What:="CORP16", Replacement:="16", LookAt:=xlPart, _
        SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
        ReplaceFormat:=False
    Cells.Replace What:="CORP32", Replacement:="32", LookAt:=xlPart, _
        SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
        ReplaceFormat:=False

And so on. This is the code that was generated when I originally recorded the macro six months ago, but I'm trying to clean things up so it's not so bulky and slow and ugly now that I've started learning how to write VBA code manually.

The problem is twofold - one, that the total list of possible schedule codes the system uses is very long and so this only contains the codes currently in use, meaning if someone's schedule changes to one that isn't currently in use I have to remember to manually add a new find and replace line to fix that specific schedule code. And two, that this section still kind of bogs down the whole thing when I run it because it's doing this find and replace a few dozen times in total.

My question is, is there a way to use a single find and replace command to search for "CORP*" and have the output be just whatever was in the "*" part of the string? Such that it would see "CORP40" and return "40", "CORP20" and return "20", etc. without separating out each possible search term as its own find-and-replace command? I found a couple of maybe-relevant solutions on other sites using regexp but I'm not familiar enough with how that works to try taking solutions for someone else's needs and tweaking them to suit what I'm trying to do.
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Try this.

Code:
Cells.Replace What:="CORP", Replacement:="", LookAt:=xlPart, _        
        SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
        ReplaceFormat:=False
This code should remove "CORP" string and leave the number part intact. Which means this one single statement should replace all.
 
Upvote 0
My question is, is there a way to use a single find and replace command to search for "CORP*" and have the output be just whatever was in the "*" part of the string? Such that it would see "CORP40" and return "40", "CORP20" and return "20", etc. without separating out each possible search term as its own find-and-replace command? I found a couple of maybe-relevant solutions on other sites using regexp but I'm not familiar enough with how that works to try taking solutions for someone else's needs and tweaking them to suit what I'm trying to do.
Absolutely. As matter as fact, you are already halfway there.
Note this argument:
Code:
LookAt:=xlPart
This tells it in only has to find a partial match (and not match the whole entire cell entry).
So, just tell it to replace "CORP" with nothing, i.e.
Code:
Cells.Replace What:="CORP", Replacement:="", LookAt:=xlPart, _        
    SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
    ReplaceFormat:=False
 
Upvote 0
...and this is why I'm trying to learn to write code rather than record it. I had no idea what the LookAt value actually did. Thank you both so much! :)
 
Upvote 0
You are welcome!

...and this is why I'm trying to learn to write code rather than record it.
Actually, I find it quite useful to use both. The Macro Recorder can be a great tool to get snippets of code. You can then check them out and edit them (and research where necessary).
 
Upvote 0
Good point - that's how I've gotten my start in learning this stuff, in fact, by recording single actions to add to existing macros and working from there.
 
Upvote 0

Forum statistics

Threads
1,214,861
Messages
6,121,973
Members
449,059
Latest member
oculus

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