How to Insert Delta Symbol Δ in Excel in a Cell

Last Updated: September 05, 2023
puneet-gogia-excel-champs

- Written by Puneet

Knowing how to insert a delta symbol in Excel can be super useful for you. Let me tell you why while working with reports you can use them to present specific types of values. Agree?

Well, in simple words, a Delta (Δ) symbol can be used to present the difference between two values over a time period.

So while working in Excel, if you calculate differences between values, it’s better to the use Delta symbol instead of using anything else like a specific word or something. Now the thing is if you look at the Excel ribbon there is no direct way for you to insert it into a cell.

Well, I have figured out that there is a total of 7 possible ways which we can use. So today in this post, I’d like to share with you these simple ways to insert a delta symbol in a cell in Excel. It’s one of those Excel Tips and Tricks that can help to get better at Basic Excel Skills.

1. Change the Font to Symbol to Get Delta

I found this way the quickest one to add a delta symbol and it’s pretty simple. All you have to do is:

  1. First of all, enter “D” in the cell (Capital Letter) where you want to insert the symbol.
    enter delta symbol in excel using font style
  2. After that, change the font style to “Symbol” from the Home Tab Font Font Name.
    enter delta symbol in excel by changing font style

This will instantly convert that “D” symbol into a delta. But, one thing you need to take care that this will change the font style for the entire text from a cell.

2. Simply Insert Delta Symbol from Symbols Option

This is a simple way to insert any symbol you want to add in a cell. All you need to do is, open the symbol dialog box and search for the symbol and insert it. Here’s how to do it in steps.

  • First of all, select the cell where you want to add the symbol.
  • Then go to Insert Tab ➜ Symbols ➜ Symbol.
    go to insert tab to insert delta symbol in excel
  • Now from insert symbol window, select “Greek and Coptic” and it will navigate you to the Greek symbols.
    select greek symbols to insert delta excel
  • From here, click on the Delta symbol and click on insert.
    click on insert to add delta excel

Once you click on the insert it will add one symbol to the selected cell which you can copy and add further to other cells.

  1. Pros: The benefit of this method is it’s simple and easy to insert.
  2. Cons: It’s not dynamic and you need to do it again and again or copy-paste the symbol into other cells.

3. Use CHAR Function to Get Delta Symbol in a Cell using a Formula

CHAR function can be used to insert a specific character by providing a code into the function. And, this can be used for the Delta symbol as well, and here’s how to do this.

  • In a cell, where you need to insert the symbol, enter the formula =CHAR(112)/=CHAR(114) in Excel’s formula bar.
  • After that, you need to change the font style of that cell to “Wingdings 3”.
insert chart function in a cell to add a delta symbol in excel

The above two formulas add two different delta symbols, the first one inserts a white (outlined) symbol, and on the other hand, the second one adds a black (filled).

  1. Pros: As CHAR is a function and this formula gives you the option to choose between two different types of symbols.
  2. Cons: If you want to add the symbol by concatenating it with some other formula it doesn’t work as you have changed the font style.

4. Use the AutoCorrect Option to Automatically Add a Delta Symbol

This is another useful way to add a delta symbol. In Excel, there is an option called Auto Correct which you can use to insert a symbol by typing a simple text.

All you need to do is specify a text which you use to enter in a cell and then whenever you use that text Excel will convert that text into a symbol.

Here are the steps to do it.

  1. First of all, copy this delta symbol from here or you can also do it by inserting the symbol from the symbol options.
  2. After that, go to File Tab ➜ Options ➜ Proofing ➜ AutoCorrect ➜ Options.
    open auto correct option to insert a delta symbol
  3. Now in the AutoCorrect dialog box, in the “Replace with” input box enter “(dlt)” and in the “With” input box paste the delta symbol which you have copied.
    add text in auto correct option for delta symbol in excel
  4. In the end, click OK.

Now, whenever you type “(dlt)” in a cell Excel will convert that text into a delta symbol. You can even use a different text from the text that we have used here.

  1. Pros: It makes it super easy to insert a symbol by entering text. Just enter the text and Excel converts it into a symbol for you.
  2. Cons: Again, this is not a dynamic method and if you need to add the symbol again you need to enter the text again.

5. Apply Custom Formatting to Add a Delta Symbol with a Number or Percentage [My Favorite]

This one is the most awesome method and my favorite one. Let’s say you want to add a delta symbol with numbers in a cell then this is the best method.

When we use a custom formatting, in that case, we just need to specify the format and Excel applies it to the cell without changing the values in the cell. Follow these simple steps for this:

  • First of all, select the cell where you want to apply custom formatting with a delta symbol.
  • Now, right-click and open the format option and go to the Custom category.
    open custom formatting for delta symbol format in excel
  • From here, in the format input bar enter the below format and click OK. General Δ
    add custom format in input bar with delta symbol excel
  • Once you apply this custom format it will show a delta sign with all the number in the cell.
    a custom delta format in excel

In this method idea is simple, no matter which format you have just combined that format with a delta sign in the custom formatting category and you’ll get the symbol. Look at the below percentage format with a delta sign.

0% Δ

a custom delta format with percentage excel
  • This is the best method of all the methods we have here because it doesn’t affect the values of the cell.
  • If you want to add a delta symbol to a cell for real then this method is not for you

6. VBA Code to Insert Delta Symbol into Multiple Cells

Macro codes are big-time savers and if a code can insert a delta symbol in a cell for you then there is nothing like that. And  below we have this code:

Sub code_delta()

Dim rng As Range

For Each rng In Selection
 rng.Value = rng.Value & ChrW(916)
Next rng

End Sub

To use this code, first of all, you need to enter it in the vb-editor (open it from the developer tab).

macro code to insert delta symbol in all excel cells

And then, select the cell and run the code. If a cell has a value, it adds the symbol after that value. If you have more than one cell then it will loop through all the cells one by one and insert the symbol.

  • VBA code can save you time and you can use it with just a single click.
  • When it adds a symbol to a cell and if that cell has a number or a percentage that becomes a text string after that and can’t be used further in calculations.

7. Copy and then Paste the Delta Symbol into the Cell

This is an unusual method but works if you need to insert a delta symbol in a cell for once. The idea is simply to copy the symbol from somewhere or you can it copy here Δ as well and then simply paste it into the cell.

5 thoughts on “How to Insert Delta Symbol Δ in Excel in a Cell”

  1. Hi,

    When we take formula =CHAR(112)/=CHAR(114) —-> then it is giving result as #VALUE! because excel wants to take formula =CHAR(112)/CHAR(114) instead of =CHAR(112)/=CHAR(114)

    Reply
  2. Sir,
    Another method to add delta symbol can be a short cut and or assign it to the qat through a macro recording.

    Reply

Leave a Comment