Have numbers that are degrees but you are having difficulty inserting the degree symbol to each? Excel Macros can modify your numbers and you will add a degree symbol to your selection in a single click!

You will learn here on how you can customize text and modify it using Macros.

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?

Adds a degree symbol to each number in your selection

Copy Source Code:


Sub AddDegreeSymbolToSelection()

Dim rng As Range

'Loop through the entire selection
For Each rng In Selection
'Set the active cell
rng.Select
'For each number, add the degree symbol at the end
If ActiveCell <> "" Then
If IsNumeric(ActiveCell.Value) Then
ActiveCell.Value = ActiveCell.Value & "°"
End If
End If
Next

End Sub

Final Result: 

Add a Degree Symbol to Selection Using Macros In Excel | MyExcelOnline

Exercise Workbook:

YouTube video
Add a Degree Symbol to Selection Using Macros In Excel | MyExcelOnline

DOWNLOAD EXCEL WORKBOOK


This is our list of numbers:

Add a Degree Symbol to Selection Using Macros In Excel | MyExcelOnline

STEP 1: Go to Developer > Code > Visual Basic

Add a Degree Symbol to Selection Using Macros In Excel | MyExcelOnline

 

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

Add a Degree Symbol to Selection Using Macros In Excel | MyExcelOnline

 

STEP 3: Let us test it out!

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

Add a Degree Symbol to Selection Using Macros In Excel | MyExcelOnline

 

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

Add a Degree Symbol to Selection Using Macros In Excel | MyExcelOnline

 

With just one click, all your numbers have the degree symbol added to it!

Add a Degree Symbol to Selection Using Macros In Excel | MyExcelOnline

 

How to Add a Degree Symbol to Selection Using Macros In Excel

 

101 Macros Book

HELPFUL RESOURCES:

JOIN OUR FREE EXCEL COURSES BELOW
Click here to access these FREE Excel courses!

 

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