Pinterest Pixel

Highlight Custom Text Using Macros In Excel

Excel has search text functionality, however we can also use Excel Macros to highlight custom text! That’s... read more

Download Excel Workbook
Bryan
Posted on

Overview

Excel has search text functionality, however we can also use Excel Macros to highlight custom text! That’s right, you can use it to highlight any text that you specify!

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?

Highlights any text that you specify

Copy Source Code:


Sub HighlightCustomText()

'Get the Custom Text
Dim txt As String
txt = InputBox("Enter the Custom Text", "Enter Text")

Dim rng As Range

'Loop through all values in the selection
For Each rng In Selection

'If the value is the same as the custom text, then set the font color to red
If rng.Value = txt Then
rng.Font.Color = RGB(255, 0, 0)
End If
Next

End Sub

Final Result: 

Highlight Custom Text Using Macros In Excel

Exercise Workbook:

Highlight Custom Text Using Macros In Excel | MyExcelOnline

Download excel workbookHighlight-Custom-Text.xlsm


Here is our initial set of data:

Highlight Custom Text Using Macros In Excel

STEP 1: Go to Developer > Code > Visual Basic

Highlight Custom Text Using Macros In Excel | MyExcelOnline

 

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

Highlight Custom Text Using Macros In Excel

 

STEP 3: Let us test it out!

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

Highlight Custom Text Using Macros In Excel | MyExcelOnline

 

Make sure your macro is selected. Click Run.

Highlight Custom Text Using Macros In Excel

For the text, let’s type in Ian Wright. Click OK.

 

Highlight Custom Text Using Macros In Excel

With just one click, all Ian Wright values are now highlighted!

 Highlight Custom Text Using Macros In Excel

 

How to Highlight Custom Text 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

Highlight Custom Text Using Macros In Excel | MyExcelOnline
Bryan

Bryan is a best-selling book author of the 101 Excel Series paperback books.

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!