Pinterest Pixel

Reverse Text Function Using Macros In Excel

Want to have fun with your text and have it displayed backwards? Excel Macros will reverse text... read more

Download Excel Workbook
Bryan
Posted on

Overview

Reverse Text Function Using Macros In Excel | MyExcelOnline Reverse Text Function Using Macros In Excel | MyExcelOnline

Want to have fun with your text and have it displayed backwards? Excel Macros will reverse text for you in a single click!

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?

Converts your selected text and puts it in reverse

Copy Source Code:


Public Function ReverseText(ByVal cell As Range) As String

'Reverse text using this function
ReverseText = VBA.strReverse(cell.Value)

End Function


'Make sure you have a selection ready
Sub ReverseTextInSelection()

Dim range As Range

Selection.Value= Selection.Value

'Loop through all the cells
For Each range In Selection
'Call your function
range= ReverseText(range)
Next range

End Sub

Final Result: 

Reverse Text Function Using Macros In Excel

Exercise Workbook:

Reverse Text Function Using Macros In Excel | MyExcelOnline

Download excel workbookReverse-Text-Function.xlsm


This is our list of text. We’ve added a couple of palindromes in here for good measure! A palindrome is when you reverse the text it reads completely the same!

Reverse Text Function Using Macros In Excel

STEP 1: Go to Developer > Code > Visual Basic

Reverse Text Function Using Macros In Excel | MyExcelOnline

 

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

We have also added a function in #1 to show you on how we define custom functionality. Then in #2 we refer to this function and use this functionality that we have created.

Reverse Text Function Using Macros In Excel

 

STEP 3: Let us test it out!

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

Reverse Text Function Using Macros In Excel | MyExcelOnline

 

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

Reverse Text Function Using Macros In Excel

 

With just one click, all of your text are now reversed! Notice the ones in red read exactly the same:

  • Was it a Cat I saw?
  • No Lemon, No Melon

Reverse Text Function Using Macros In Excel

How to Reverse Text Using Macros in Excel

 

101 Macros Book

If you like this Excel tip, please share it
Reverse Text Function Using Macros In Excel | MyExcelOnline Reverse Text Function Using Macros In Excel | MyExcelOnline
Reverse Text Function Using Macros In Excel | MyExcelOnline
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.

See also  Unmerge All Cells Using Macros In Excel

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!

Share to...