Please Note: This article is written for users of the following Microsoft Excel versions: 97, 2000, 2002, and 2003. If you are using a later version (Excel 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Excel, click here: Superscripts in Find and Replace.

Superscripts in Find and Replace

Written by Allen Wyatt (last updated November 21, 2020)
This tip applies to Excel 97, 2000, 2002, and 2003


1

Kirk needs to search for things like "yd2" and replace it with "yd2" where the "2" is superscripted. He wonders if there is a way to do that in Excel.

The find and replace capabilities of Excel are more limited than those of Word, where such replacements are relatively easy. While you could export your information to Word, do the replacements, and then import it back into Excel, there are some things you can do without ever leaving Excel.

First, however, let's examine something that you might reasonably think would work, but doesn't really. Note that the Replace tab of the Find and Replace dialog box seems to provide a way to specify attributes for the text you want to use as the replacement. This might lead you to think that you could do the following:

  1. Replace all instances of yd2 with yd$*$
  2. Replace all instances of $*$ with a superscripted 2.

While this sounds good in theory, it won't work. You can follow the steps, including making sure that the replacement 2 is set to be superscript. The problem, however, is that Excel applies the superscript format to the entire cell, not just to the 2. Thus, you end up with yd2 completely as superscript.

You could, if you wanted, skip superscripting all together and just use a typeface character that appears superscripted. If you use the Symbol dialog box, you can find the digits 0 through 3 that appear superscripted. If you use the superscripted digit 2 (ASCII 178) in your replacement text, then you can get the desired appearance. Follow these steps:

  1. Press Ctrl+H to display the Replace tab of the Find and Replace dialog box. (See Figure 1.)
  2. Figure 1. The Replace tab of the Find and Replace dialog box.

  3. In the Find What box enter yd2.
  4. In the Replace With box enter yd and then hold down the Alt key as you type 0178 on the numeric keypad.
  5. Click Replace All.

Finally, if you really want to use superscripts, your best bet is going to be using a macro to do the formatting. The simplest method is tied to the specific example provided—making the 2 in yd2 superscript.

Sub DoConvert()
    Dim c As Range

    For Each c In Selection.Cells
        If c.Value = "yd2" Then
            c.Characters(3, 1).Font.Superscript = True
        End If
    Next
End Sub

To use the macro, select the cells you want to modify, then run the macro. Each cell in the selection is stepped through and checked to see if it contains the text yd2. If it does, then the third character (the 2) is made superscript; the rest of the cell is undisturbed.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the ExcelTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (5490) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Superscripts in Find and Replace.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Changing Spacing Between Table Cells

Need to adjust the space between individual cells in a table? Word gives you a good deal of control over this spacing, as ...

Discover More

Sorting an Album List

Word allows you to easily sort the information you store in a document. If you want to sort information as groups of ...

Discover More

Specifying Your Target Monitor

When using Word to create content that will end up on the Web, it is helpful to know the probable screen resolution of ...

Discover More

Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!

More ExcelTips (menu)

Finding Text in Text Boxes

Want to search for text that may appear in a text box rather than in a regular worksheet cell? You can only perform the ...

Discover More

Wildcards in 'Replace With' Text

When doing searches in Excel, you can use wildcard characters in the specification of what you are searching. However, ...

Discover More

Changing Default Search Settings

Excel provides some great tools for finding information in a worksheet or a workbook. Changing the default settings used ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 6 - 0?

2021-09-20 23:06:26

sunny

Non-VBA should be possible by replacing Unicodes and vice-versa.


This Site

Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.