Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() hi I believe there is a way that you can change values on screen that are positive to negative or vice versa!! I would be really grateful if someone could tell me how??!!! -- relliman ------------------------------------------------------------------------ relliman's Profile: http://www.excelforum.com/member.php...o&userid=29105 View this thread: http://www.excelforum.com/showthread...hreadid=488276 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Multiply with -1
=A2*-1 or you can put -1 in an empty cell, copy it, select the values (or preferably a copied range of the values in case you need to go back to the original for any reason), do editpaste special and select multiply -- Regards, Peo Sjoblom (No private emails please) "relliman" wrote in message ... hi I believe there is a way that you can change values on screen that are positive to negative or vice versa!! I would be really grateful if someone could tell me how??!!! -- relliman ------------------------------------------------------------------------ relliman's Profile: http://www.excelforum.com/member.php...o&userid=29105 View this thread: http://www.excelforum.com/showthread...hreadid=488276 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() I believe there is a way that you can change values on screen that are positive to negative or vice versa!! I would be really grateful if someone could tell me how??!!! to change A1 in another cell use the formula =A1*-1 or use a macro, I have not checked this but it should work ok. Sub PosToNeg() dim c For each c in selection If isnumeric(c) then c.value = c*-1 end if next End Sub Peter |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Yes, multiply by -1. But if you want to just change a whole group, you could
just type a -1 in some random cell and copy it (ctrl + C). Then select the cells you want to change and Edit Paste Special, select the 'multiply' radio button and click OK. "relliman" wrote: hi I believe there is a way that you can change values on screen that are positive to negative or vice versa!! I would be really grateful if someone could tell me how??!!! -- relliman ------------------------------------------------------------------------ relliman's Profile: http://www.excelforum.com/member.php...o&userid=29105 View this thread: http://www.excelforum.com/showthread...hreadid=488276 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() =ABS() will return a positive number =-ABS() will return a negative number Hope this helps -- TJF ------------------------------------------------------------------------ TJF's Profile: http://www.excelforum.com/member.php...o&userid=29096 View this thread: http://www.excelforum.com/showthread...hreadid=488276 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Add sequences of positive then negative numbers | Excel Discussion (Misc queries) | |||
I Need a formula to evaluate a cell with + or - values | Excel Worksheet Functions | |||
Formula to make Negative Values Positive & Positive Values Negative? | Excel Discussion (Misc queries) | |||
Changing Positive to Negative | Excel Worksheet Functions | |||
simple query changing set of numbers from positive to negative | Excel Discussion (Misc queries) |