+ Reply to Thread
Results 1 to 6 of 6

Finding the percentage difference of two or more numbers

  1. #1
    Registered User
    Join Date
    07-26-2005
    Posts
    8

    Finding the percentage difference of two or more numbers

    I need to find the difference of 2 or more numbers and then show the percentage "+ or -" in a separate cell.

    For example, if wanted to see the growth or decrease of a club attendance for 3 yrs.

    Year 1 = 345
    Year 2 = 514
    Year 3 = 231

  2. #2
    Forum Expert Ron Coderre's Avatar
    Join Date
    03-22-2005
    Location
    Boston, Massachusetts
    MS-Off Ver
    2013, 2016, O365
    Posts
    6,996
    If your data is in Cells A1:A3, then
    B2: =(A2-A1)/A1
    Format that cell as Percent

    Then, copy B2 down as far as needed.

    Does that help?

    Regards,
    Ron

  3. #3
    Registered User
    Join Date
    01-24-2006
    Posts
    7
    If you want to show just that attendance has either increased or decreased by a + or -, use this:

    (If your data is in Cells A1:A3, then
    B2: =IF(A2>A1,"+",IF(A2<A1,"-","No Change"))

  4. #4
    Registered User
    Join Date
    07-26-2005
    Posts
    8

    Finding the difference in percentage of two or more numbers

    Column A Column B Column C
    A1 = 345 B1=514 C1 = 231

    I want to know the percentage of difference between all 3 and place the result the percentage (growth or decline %) in Column D1

  5. #5
    Bob Miller
    Guest

    Re: Finding the percentage difference of two or more numbers


    If you data is in A1, A2, A3 respectively then, in B2 put =(A2-A1)/A1
    and copy this to all the cells below adjacent to data in an A column
    cell. Format column B to %.
    slr Wrote:
    > I need to find the difference of 2 or more numbers and then show the
    > percentage "+ or -" in a separate cell.
    >
    > For example, if wanted to see the growth or decrease of a club
    > attendance for 3 yrs.
    >
    > Year 1 = 345
    > Year 2 = 514
    > Year 3 = 231
    >
    >
    > --
    > slr
    > ------------------------------------------------------------------------
    > slr's Profile:
    > http://www.excelforum.com/member.php...o&userid=25609
    > View this thread:
    > http://www.excelforum.com/showthread...hreadid=504939



    --
    Bob Miller

  6. #6
    Bob Miller
    Guest

    Re: Finding the percentage difference of two or more numbers


    For what you want, column B is not significant. Therefore, place this
    in D1:
    (C1-A1)/A1 and format it as a percentage.
    slr Wrote:
    > Column A Column B Column C
    > A1 = 345 B1=514 C1 = 231
    >
    > I want to know the percentage of difference between all 3 and place
    > the
    > result the percentage (growth or decline %) in Column D1
    >
    >
    > --
    > slr
    > ------------------------------------------------------------------------
    > slr's Profile:
    > http://www.excelforum.com/member.php...o&userid=25609
    > View this thread:
    > http://www.excelforum.com/showthread...hreadid=504939



    --
    Bob Miller

+ 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