+ Reply to Thread
Results 1 to 3 of 3

Change the sign on all numbers in a spread sheet

  1. #1
    Kelly
    Guest

    Change the sign on all numbers in a spread sheet

    I have a spread sheet that I need to change all of the negative numbers to
    positve and positive to negative. Is there an easy way to do this, other
    than redoing each cell or adding a column to multiply by -1?

  2. #2
    Toppers
    Guest

    RE: Change the sign on all numbers in a spread sheet

    Put -1 in a "spare" cell and copy (this cell).
    Select data to changed
    Edit==>Paste Special==> Operation==>Multiply
    Delete -1 from your "spare" cell

    (Backup before attempting above!)

    HTH

    "Kelly" wrote:

    > I have a spread sheet that I need to change all of the negative numbers to
    > positve and positive to negative. Is there an easy way to do this, other
    > than redoing each cell or adding a column to multiply by -1?


  3. #3
    Don Guillett
    Guest

    Re: Change the sign on all numbers in a spread sheet

    Sub changepos()
    For Each c In Range("c1:c2")
    c.Value = -c
    Next c
    End Sub

    --
    Don Guillett
    SalesAid Software
    [email protected]
    "Kelly" <[email protected]> wrote in message
    news:[email protected]...
    >I have a spread sheet that I need to change all of the negative numbers to
    > positve and positive to negative. Is there an easy way to do this, other
    > than redoing each cell or adding a column to multiply by -1?




+ 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