Pinterest Pixel

Remove Characters at the Start Using Macros In Excel

Want to quickly truncate the first number of characters of your choosing? Excel Macros can remove characters... read more

Download Excel Workbook
Bryan
Posted on

Overview

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(&amp;quot;Input the number of characters to remove at the start&amp;quot;, &amp;quot;Num of characters&amp;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: 

Insert Time Range Using Macros In Excel

Exercise Workbook:

Remove Characters at the Start Using Macros In Excel | MyExcelOnline

Download excel workbookRemove-Characters-at-the-Start.xlsm


This is the text that we want to modify. We want to remove the first 2 characters of these Part Numbers:

Insert Time Range Using Macros In Excel

STEP 1: Go to Developer > Code > Visual Basic

Remove Characters at the Start Using Macros In Excel | MyExcelOnline

 

See also  Disable/Enable Get Pivot Data Using Macros In Excel

STEP 2: Paste in your code and Select Save. Close the window afterwards.

Insert Time Range Using Macros In Excel

 

STEP 3: Let us test it out!

Open the sheet containing the data. Go to Developer > Code > Macros

Remove Characters at the Start Using Macros In Excel | MyExcelOnline

 

Make sure your part numbers and macro are selected. Click Run.

Insert Time Range Using Macros In Excel

We want to remove the first 2 characters. Type in 2 and Click OK.

Insert Time Range Using Macros In Excel

With just one click, the first 2 characters are now all removed!

Insert Time Range Using Macros In Excel

 

How to Remove Characters at the Start Using Macros In Excel

 

101 Macros Book

If you like this Excel tip, please share itEmail this to someone

email

Pin on Pinterest

Pinterest

Share on Facebook

Facebook

Tweet about this on Twitter

Twitter

Share on LinkedIn

Linkedin

Get Video Training

Advance your Microsoft Excel & Office Skills with the MyExcelOnline Academy!

Dramatically Reduce Repetition, Stress, and Overtime!
Exponentially Increase Your Chances of a Promotion, Pay Raise or New Job!

Learn in as little as 5 minutes a day or on your schedule.

Learn More!