Pinterest Pixel

Add a Degree Symbol to Selection Using Macros In Excel

Have numbers that are degrees but you are having difficulty inserting the degree symbol to each? Excel... read more

Download Excel Workbook
Bryan
Posted on

Overview

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

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

Exercise Workbook:

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

Download excel workbookAdd-a-Degree-Symbol-to-Selection.xlsm


This is our list of numbers:

Add a Degree Symbol to Selection Using Macros In Excel

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

 

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

 

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

Add a Degree Symbol to Selection Using Macros In Excel

 

How to Add a Degree Symbol to Selection 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

Add a Degree Symbol to Selection Using Macros In Excel | MyExcelOnline
Add a Degree Symbol to Selection 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!