On some calculators there is a little button that can come in very handy: the plus/minus button. This button, when pressed, will switch whatever value is on the display between its positive and negative values. For instance, if the display shows the number 57, then pressing the button will change the display to -57. Pressing it again will switch the value back to 57.
If you would like a "button" that does this in Excel, you'll quickly find that there is none built into the program. You can quickly create one, however, by using a macro:
Sub PlusMinus1() Dim cell As Range For Each cell In Selection If Application.IsNumber(cell) Then cell.Value = cell.Value * -1 End If Next cell End Sub
Note that the macro simply steps through whatever range of cells you selected when the macro started. Each cell is checked to see if it contains a number. If it does, then the value of that number is multiplied by -1. The result is a switch in sign for the number.
One drawback to the macro is that if the cell contains a formula, that formula is converted to a value and then multiplied by the -1 value. You may not want to lose your formulas. In that case, you could rely on a more discriminating macro, one that checks to see if the cell contains a formula or not. If not, then it is simply multiplied by -1. If so, then the formula is adjusted so that the result is multiplied by -1.
Sub PlusMinus2() Dim cell As Range For Each cell In Selection If Left(cell.Formula, 1) = "=" Then Cell.Formula = cell.Formula & " * -1" Elseif Application.IsNumber(cell) Then cell.Value = cell.Value * -1 End If Next cell End Sub
You can assign either of these macros to a shortcut key or to a toolbar button to make it easy to use at any time.
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (3256) 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: Creating a Plus/Minus Button.
Excel Smarts for Beginners! Featuring the friendly and trusted For Dummies style, this popular guide shows beginners how to get up and running with Excel while also helping more experienced users get comfortable with the newest features. Check out Excel 2013 For Dummies today!
Does your macro need to know how many windows Excel has open? You can determine it by using the Count property of the ...
Discover MoreNeed to know the character code used for a particular character? In a macro you can use the Asc function to determine the ...
Discover MoreIf you have a range of cells in which you want to count all the commas, there are several ways you can derive the figure ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2015-06-22 03:06:10
Phill
This works, but will mess up any formulae that you use (especially if you are not using a built in keyword - such as SUM).
Howerver a few additions and changes to the 2nd Macro PlusMinus2 can fit it :-->
Sub PlusMinus2()
Dim cell As Range
For Each cell In Selection
If Mid(cell.Formula, 2, 1) = "-" Then
'Already MINUS, so make positive.
cell.Formula = "=" & Right(cell.Formula, Len(cell.Formula) - 2)
ElseIf Left(cell.Formula, 2) = "=(" Then
' If "(" already, then don't add another.
cell.Formula = "=-" & Right(cell.Formula, Len(cell.Formula) - 1)
ElseIf Left(cell.Formula, 1) = "=" Then
' if no "(" then add it, so whole formula is changed, not just last number.
cell.Formula = "=-(" & Right(cell.Formula, Len(cell.Formula) - 1) & ")"
ElseIf Application.IsNumber(cell) Then
'Not a formula, so change value.
cell.Value = cell.Value * -1
End If
Next cell
End Sub
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.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2022 Sharon Parq Associates, Inc.
Comments