Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
relliman
 
Posts: n/a
Default Changing formuals from Positive to negative


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   Report Post  
Posted to microsoft.public.excel.misc
Peo Sjoblom
 
Posts: n/a
Default Changing formuals from Positive to negative

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   Report Post  
Posted to microsoft.public.excel.misc
PeterAtherton
 
Posts: n/a
Default Changing formuals from Positive to negative



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   Report Post  
Posted to microsoft.public.excel.misc
bpeltzer
 
Posts: n/a
Default Changing formuals from Positive to negative

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   Report Post  
Posted to microsoft.public.excel.misc
TJF
 
Posts: n/a
Default Changing formuals from Positive to negative


=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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Add sequences of positive then negative numbers judoist Excel Discussion (Misc queries) 6 November 26th 05 05:51 AM
I Need a formula to evaluate a cell with + or - values Bob in Oklahoma Excel Worksheet Functions 6 October 31st 05 02:41 PM
Formula to make Negative Values Positive & Positive Values Negative? mustard Excel Discussion (Misc queries) 4 September 26th 05 10:05 PM
Changing Positive to Negative Matthew Hackett via OfficeKB.com Excel Worksheet Functions 2 June 28th 05 11:55 AM
simple query changing set of numbers from positive to negative sammy Excel Discussion (Misc queries) 2 May 1st 05 11:06 PM


All times are GMT +1. The time now is 11:11 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"