Reversing text in Excel can be a daunting task, especially for those who are not familiar with the software's functions and formulas. However, with the right techniques and tools, reversing text in Excel can be made easy and simple. In this article, we will explore the various methods of reversing text in Excel, including using formulas, functions, and shortcuts.
Understanding the Importance of Reversing Text in Excel

Reversing text in Excel is a common task that is often required in data manipulation and analysis. It can be useful in a variety of situations, such as reversing the order of a list, changing the direction of text, or creating a mirror image of a text string. By learning how to reverse text in Excel, you can improve your productivity and efficiency in working with data.
Method 1: Using the REVERSE Function
One of the easiest ways to reverse text in Excel is by using the REVERSE function. This function is available in Excel 2013 and later versions. To use the REVERSE function, follow these steps:
- Select the cell where you want to display the reversed text.
- Type "=REVERSE(" and select the cell that contains the text you want to reverse.
- Close the parenthesis and press Enter.
For example, if you have the text "Hello World" in cell A1, you can use the REVERSE function to reverse it by typing "=REVERSE(A1)" in cell B1.

Method 2: Using the MID and LEN Functions
If you are using an earlier version of Excel that does not have the REVERSE function, you can use a combination of the MID and LEN functions to reverse text. Here's how:
- Select the cell where you want to display the reversed text.
- Type "=MID(" and select the cell that contains the text you want to reverse.
- Type ",LEN(" and select the cell that contains the text you want to reverse.
- Type ")-1)" and close the parenthesis.
- Press Enter.
For example, if you have the text "Hello World" in cell A1, you can use the MID and LEN functions to reverse it by typing "=MID(A1,LEN(A1)-1,1)&MID(A1,LEN(A1)-2,1)&MID(A1,LEN(A1)-3,1)&..." in cell B1.

Method 3: Using a VBA Macro
You can also use a VBA macro to reverse text in Excel. Here's an example of a macro that reverses text:
- Open the Visual Basic Editor by pressing Alt+F11 or by navigating to Developer > Visual Basic in the ribbon.
- In the Visual Basic Editor, click Insert > Module to insert a new module.
- Paste the following code into the module:
Function ReverseText(text As String) As String
ReverseText = StrReverse(text)
End Function
- Save the module by clicking File > Save.
- Close the Visual Basic Editor.
- Select the cell where you want to display the reversed text.
- Type "=ReverseText(" and select the cell that contains the text you want to reverse.
- Close the parenthesis and press Enter.

Method 4: Using a Formula with the RIGHT and LEN Functions
Another way to reverse text in Excel is by using a formula that combines the RIGHT and LEN functions. Here's an example of a formula that reverses text:
- Select the cell where you want to display the reversed text.
- Type "=RIGHT(" and select the cell that contains the text you want to reverse.
- Type ",LEN(" and select the cell that contains the text you want to reverse.
- Type ")-1)" and close the parenthesis.
- Press Enter.
For example, if you have the text "Hello World" in cell A1, you can use the formula to reverse it by typing "=RIGHT(A1,LEN(A1)-1)&RIGHT(A1,LEN(A1)-2)&RIGHT(A1,LEN(A1)-3)&..." in cell B1.

Method 5: Using a Formula with the REPT and MID Functions
You can also use a formula that combines the REPT and MID functions to reverse text in Excel. Here's an example of a formula that reverses text:
- Select the cell where you want to display the reversed text.
- Type "=REPT(" and select the cell that contains the text you want to reverse.
- Type ",LEN(" and select the cell that contains the text you want to reverse.
- Type ")-1)" and close the parenthesis.
- Press Enter.
For example, if you have the text "Hello World" in cell A1, you can use the formula to reverse it by typing "=REPT(MID(A1,LEN(A1)-1,1)&MID(A1,LEN(A1)-2,1)&MID(A1,LEN(A1)-3,1)&...,LEN(A1))" in cell B1.

Gallery of Reversing Text in Excel
Reversing Text in Excel Image Gallery










We hope this article has helped you learn how to reverse text in Excel using various methods. Whether you are using formulas, functions, or VBA macros, reversing text in Excel can be made easy and simple. Try out these methods and see which one works best for you.