How to Type Minus Sign in Excel Without Formula: 6 Methods

Method 1 – Apply Insert Tab to Type Minus Sign in Excel Without Formula

STEPS:

  • Select cell C5.

Apply Insert Tab to Type Minus Sign in Excel Without Formula

  • Go to the Insert tab.
  • From the Symbols section of the ribbon, select Symbol.

Apply Insert Tab to Type Minus Sign in Excel Without Formula

  • A new dialogue box named Symbol will appear.
  • Select the Mathematical Operators in the Subset section.
  • Select the symbol Minus Sign.

Apply Insert Tab to Type Minus Sign in Excel Without Formula

  • The above command will input a minus in cell C5.

  • Type 7 in cell C5.

  • Insert the minus sign in the same way for the other values.


Method 2 – Insert Minus Sign in Excel Without Formula Using Single Quote

STEPS:

  • Type -7 in cell C5.
  • Add a single quote before it.

Insert Minus Sign in Excel Using Single Quote

  • Press Enter.
  • See an error in cell C5.
  • Click on the small icon left.
  • Select the option Convert to Number.

Insert Minus Sign in Excel Using Single Quote

  • The above command returns the value of cell B5 with a minus sign.

  • Repeat the above steps for all the values.
  • Get results like the following image.


Method 3 – Add Custom Formatting to Type Minus Sign Without Excel Formula

STEPS:

  • Select range B5:B8.
  • Right-click on the selected region. Select the option Format Cells.

Add Custom Formatting to Type Minus Sign Without Excel Formula

  • A new dialogue box named Format Cells will appear.
  • In the dialogue box, go to the Number tab.
  • Select the option Custom from the Category section.
  • In the Type input field, insert -#,###, #,###. This will give us a preview of the output in the Sample section.
  • Click OK.

  • See our desired result in the following image.


Method 4 – Excel Paste Special Multiplication for Typing Minus Sign

STEPS:

  • Select cell D5 and press Ctrl + C to copy that value.

Excel Paste Special Multiplication for Typing Minus Sign

  • Select range B5:B8 and right-click on the mouse.
  • Select the option Paste Special.

Excel Paste Special Multiplication for Typing Minus Sign

  • Paste Special dialogue box will appear.
  • Check the option Multiply from the Operation section.
  • Click OK.

  • Get minus signs before all the values.


Method 5 – Type Minus Sign in Excel Without Formula Using Flash Fill Feature

STEPS:

  • Type the desired value of cell B5 in cell C5 with a minus sign.

Type Minus Sign Without Excel Formula Using Flash Fill Feature

  • Select cell C6.
  • Press Ctrl + E.
  • The above action fills the range C6:C10.
  • Click the small icon left.
  • Select the option Accept suggestions.

Type Minus Sign Without Excel Formula Using Flash Fill Feature

  • Get numeric values with minus signs before them.


Method 6 – Apply VBA Code to Type Minus Sign in Excel Without Formula

STEPS:

  • Select range B5:B8.

Apply VBA Code to Insert Minus Sign in Excel

  • Go to the Developer tab.
  • Select the option Visual Basic from the ribbon.

Apply VBA Code to Insert Minus Sign in Excel

  • A new VBA project window will open.
  • Right-click on the active sheet named Sheet7 (VBA).
  • Select Insert > Module.

  • A new VBA code window will open.
  • Insert the following code in that code window.
Sub TypeMinusSign()
For Each Cell In Selection
If Cell.Value > 0 Then
Cell.Value = -Cell.Value
End If
Next Cell
End Sub
  • Click OK or press the F5 key to run the code.

  • See minus signs before the selected numbers in our dataset.

Apply VBA Code to Insert Minus Sign


Download Practice Workbook

You can download the practice workbook from here.


Related Articles


<< Go Back to Mathematical Symbols in Excel | Insert Symbol in Excel | Excel Symbols | Learn Excel

Get FREE Advanced Excel Exercises with Solutions!
Mukesh Dipto
Mukesh Dipto

Mukesh Dipto is an excellent marine engineer who loves working with Excel and diving into VBA programming. For him, programming is like a superhero tool that saves time when dealing with data, files, and the internet. His skills go beyond the basics, including Rhino3D, Maxsurf C++, AutoCAD, HTML, CSS, JavaScript, and WordPress. He got his B.Sc in Naval Architecture & Marine Engineering from BUET, and now he's switched gears, working as a content developer. In this role, he... Read Full Bio

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo