+ Reply to Thread
Results 1 to 5 of 5

Changing formuals from Positive to negative

  1. #1
    Registered User
    Join Date
    11-25-2005
    Posts
    1

    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??!!!

  2. #2
    Peo Sjoblom
    Guest

    Re: 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 edit>paste special and select multiply

    --
    Regards,

    Peo Sjoblom

    (No private emails please)


    "relliman" <[email protected]> wrote in
    message news:[email protected]...
    >
    > 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. #3
    PeterAtherton
    Guest

    RE: 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. #4
    bpeltzer
    Guest

    RE: 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. #5
    Registered User
    Join Date
    11-25-2005
    Posts
    5
    =ABS() will return a positive number
    =-ABS() will return a negative number

    Hope this helps

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1