Want to quickly truncate the first number of characters of your choosing? Excel Macros can remove characters at the start of your selection of text!
Make sure your Excel has the Developer Tab enabled following this tutorial.
I explain how you can do this below step by step!
What does it do?
Removes the number of characters at the start as specified by the user
Copy Source Code:
Sub RemoveCharactersAtTheStart() Dim range As Range Dim num As Integer Get the <a href="https://www.myexcelonline.com/blog/remove-character-from-string/" target="_blank" rel="noopener">characters to be removed from</a> the user num = InputBox(&quot;Input the number of characters to remove at the start&quot;, &quot;Num of characters&quot;) 'Loop through all of the text For Each range In Selection 'Use Right to remove the first x characters range = Right(range, Len(range) - num) Next range End Sub
Final Result:
Exercise Workbook:
This is the text that we want to modify. We want to remove the first 2 characters of these Part Numbers:
STEP 1: Go to Developer > Code > Visual Basic
STEP 2: Paste in your code and Select Save. Close the window afterwards.
STEP 3: Let us test it out!
Open the sheet containing the data. Go to Developer > Code > Macros
Make sure your part numbers and macro are selected. Click Run.
We want to remove the first 2 characters. Type in 2 and Click OK.
With just one click, the first 2 characters are now all removed!
How to Remove Characters at the Start Using Macros In Excel
Bryan
Bryan Hong is an IT Software Developer for more than 10 years and has the following certifications: Microsoft Certified Professional Developer (MCPD): Web Developer, Microsoft Certified Technology Specialist (MCTS): Windows Applications, Microsoft Certified Systems Engineer (MCSE) and Microsoft Certified Systems Administrator (MCSA).
He is also an Amazon #1 bestselling author of 4 Microsoft Excel books and a teacher of Microsoft Excel & Office at the MyExecelOnline Academy Online Course.