As was foretold, we've added advertisements to the forums! If you have questions, or if you encounter any bugs, please visit this thread: https://forums.penny-arcade.com/discussion/240191/forum-advertisement-faq-and-reports-thread/
Options

Little Excel Help

King KongKing Kong Registered User regular
edited July 2009 in Help / Advice Forum
I have 2 number totals I am increasing by 20% I have to come up with 3 different formulas to do it.

For one example I typed 120% in a cell and multplied that cell by my number total (I.E. =SUM(B10*J1))

What are some other methods I could use to come up with the same value?

King Kong on

Posts

  • Options
    DJ-99DJ-99 Registered User regular
    edited July 2009
    =PRODUCT(B10,J1)

    =SUMPRODUCT(B10,J1)

    I'm not really sure what the point of this is, or if this is what you mean.

    Also, =SUM(B10*J1) isn't really a formula....the SUM function with one argument doesn't do anything....you might as well just do =B10*J1

    DJ-99 on
  • Options
    DeebaserDeebaser on my way to work in a suit and a tie Ahhhh...come on fucking guyRegistered User regular
    edited July 2009
    I don't think the formula in the OP will work FYI.

    =SUM(Cell1:Cell2) *1.20 is what i think you were going for.



    edit:
    or =SUM(Cell1:Cell2) *J1

    Deebaser on
  • Options
    DJ-99DJ-99 Registered User regular
    edited July 2009
    Deebaser wrote: »
    I don't think the formula in the OP will work FYI.

    =SUM(Cell1:Cell2) *1.20 is what i think you were going for.



    edit:
    or =SUM(Cell1:Cell2) *J1

    Yeah, it depends what his reference cells contain. If B10 is already a SUM, and J1 is 1.2, then what he has will work...but it would just be a weird way of doing it....

    DJ-99 on
  • Options
    King KongKing Kong Registered User regular
    edited July 2009
    Hmm. Let me try to re-word this.

    I have a number.. X that needs to be increased by 20% in teh next cell below.

    What could I put in a cell below X that would calculate this for me.

    A1 is say 23,000

    What could I use in A2 to add 20% to that number

    For his example he had us put 120% in J1 and had us do X*J1

    Sorry my Excel skills are so shitty and my math is even worse.

    King Kong on
  • Options
    DJ-99DJ-99 Registered User regular
    edited July 2009
    =PRODUCT(A1,J1)

    =SUMPRODUCT(A1,J1)

    These should both do it.

    DJ-99 on
  • Options
    DaenrisDaenris Registered User regular
    edited July 2009
    well...
    A1*1.2
    A1 + (A1*.2)
    A1 * 2 - (A1*.8)... how ridiculous do we need to get?

    To add 20%, you just need to find 120% of the number, which is the same as multiplying by 1.2. There's no reason to get more complicated than that really.

    Daenris on
  • Options
    King KongKing Kong Registered User regular
    edited July 2009
    That worked perfectly. Thanks everyone!

    King Kong on
  • Options
    DeebaserDeebaser on my way to work in a suit and a tie Ahhhh...come on fucking guyRegistered User regular
    edited July 2009
    DJ-99 wrote: »

    Yeah, it depends what his reference cells contain. If B10 is already a SUM, and J1 is 1.2, then what he has will work...but it would just be a weird way of doing it....

    Yeah it was worded too strangely for my nerd brain.

    Deebaser on
  • Options
    DeebaserDeebaser on my way to work in a suit and a tie Ahhhh...come on fucking guyRegistered User regular
    edited July 2009
    DJ-99 wrote: »

    Yeah, it depends what his reference cells contain. If B10 is already a SUM, and J1 is 1.2, then what he has will work...but it would just be a weird way of doing it....

    Yeah it was worded too strangely for my nerd brain.

    Oh yeah, and this is a retarded excel assignment. Find three different ways to do one simple thing??

    You should punch your teacher in the nose, imo.

    Deebaser on
  • Options
    DJ-99DJ-99 Registered User regular
    edited July 2009
    Deebaser wrote: »
    DJ-99 wrote: »

    Yeah, it depends what his reference cells contain. If B10 is already a SUM, and J1 is 1.2, then what he has will work...but it would just be a weird way of doing it....

    Yeah it was worded too strangely for my nerd brain.

    Oh yeah, and this is a retarded excel assignment. Find three different ways to do one simple thing??

    You should punch your teacher in the nose, imo.

    I think it would be a good exercise if it were something like:

    1 3
    6 8
    5 2

    And he wanted you to multiply 1*3, 6*8, 5*2, then add them up, because then it would teach you how to do product, sum, and also sumproduct. But I agree, as it is, it seems really silly and worthless.

    DJ-99 on
  • Options
    King KongKing Kong Registered User regular
    edited July 2009
    It's a very basic PC class. In fact I'm pissed I paid to take it and I have no choice if I want my degree. The only real benefit is my Excel skills blow but we spend a total of 4 hours on Excel. We spent roughly 4 weeks in Word and how to make folders inside of folders o_O

    King Kong on
Sign In or Register to comment.