Created
March 24, 2015 08:05
-
-
Save kimsama/c898fe37589e73f209bb to your computer and use it in GitHub Desktop.
Excel VBA script which substitute the given data in the ranged multiple cells
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Sub MultipleSubs() | |
| Dim rng As Range | |
| Dim cell As Range | |
| Set rng = Sheets("CardDataTable").Range("K2:K323") | |
| For Each cell In rng | |
| cell = WorksheetFunction.Substitute(cell, "_base", "") | |
| Next | |
| Application.ScreenUpdating = True | |
| End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment