Open Source OpenOffice Spreadsheet MK2 - Help!

Discussion in 'Software' started by Ryu_ookami, 11 Jun 2011.

  1. Ryu_ookami

    Ryu_ookami I write therefore I suffer.

    Joined:
    11 Mar 2004
    Posts:
    3,370
    Likes Received:
    145
    Hi I was wondering if anyone know the formula I need to use.

    I want to put a numericial value into a cell and for the cell beneath it to show the value of the first cell + 10% and the cell beneath that to show the second cells value + 10% of the second cells value and so on.
     
    Last edited: 12 Jun 2011
  2. PabloFunky

    PabloFunky What's a Dremel?

    Joined:
    19 Sep 2010
    Posts:
    1,162
    Likes Received:
    97
    =sum(A1*0.10)+A1

    done the same, so i could also work out interest on fixed amounts.

    Wanted to do more complex than this, (percentage on varying dates and values))but my head started hurting.
     
  3. Ryu_ookami

    Ryu_ookami I write therefore I suffer.

    Joined:
    11 Mar 2004
    Posts:
    3,370
    Likes Received:
    145
    thanks I'm trying to work out a projected sales forecast and for some reason the figures keep skyrocketting.
     
  4. PabloFunky

    PabloFunky What's a Dremel?

    Joined:
    19 Sep 2010
    Posts:
    1,162
    Likes Received:
    97
    ok, nice one, hope that helps, cant remember how i worked it out, i guess for others with spreadsheet experience, could do allsorts of stuff.
     
  5. faugusztin

    faugusztin I *am* the guy with two left hands

    Joined:
    11 Aug 2008
    Posts:
    6,943
    Likes Received:
    268
    Why so complicated ?
    Code:
    =A1*1.1
     
  6. PabloFunky

    PabloFunky What's a Dremel?

    Joined:
    19 Sep 2010
    Posts:
    1,162
    Likes Received:
    97
    As the easy way is for pussies :p.

    yep, that worked also.
     
  7. Ryu_ookami

    Ryu_ookami I write therefore I suffer.

    Joined:
    11 Mar 2004
    Posts:
    3,370
    Likes Received:
    145
    I've stuck with the first way as its allowd me to set up a couple of cells that effect the entire sheet so that I can show quarterly growth or (I hope not) quarterly losses

    so ended up looking like =SUM(B3*B26)+B3

    that way I can change B26 to reflect a percentage of growth or loss.
     
    Last edited: 12 Jun 2011
  8. PabloFunky

    PabloFunky What's a Dremel?

    Joined:
    19 Sep 2010
    Posts:
    1,162
    Likes Received:
    97
    That was my other reason:naughty:
     
  9. faugusztin

    faugusztin I *am* the guy with two left hands

    Joined:
    11 Aug 2008
    Posts:
    6,943
    Likes Received:
    268
    I still don't get the point of SUM in this case. What is the difference between that and :
    Code:
    =B3*(1+B26/100)
    Where B26 is the percentage value.
     
  10. Ryu_ookami

    Ryu_ookami I write therefore I suffer.

    Joined:
    11 Mar 2004
    Posts:
    3,370
    Likes Received:
    145
    It's just something that has to be typed I think. It's same for the roundup and rounddown functions.

    I've got one more formula I need to work out, but the GF is refusing to let me to work on the spreadsheet. She keeps mentioning something about the sound of grinding teeth and the anguished screams of hair being torn out.

    So I'm going to type it here and hope that someone can work it out for me.

    We have the option of buying stock by the container load. If we buy by the container load we have pallets of stock left over that I can not get to show up as I'm unsure how to do it. I'll give you an example.

    Month one we need 2.7 containers so we have to buy 3 containers.
    Month two we need 2.7 containers so we have to buy 3 containers.
    Month three we need 2.6 containers.

    Now according to the spreadsheet we have to buy 3 containers, but in reality we have a stored stock of 0.6 of a container so we would only need to buy 2 containers, but I can't work out how to get it work like that on the spreadsheet.
     
    Last edited: 12 Jun 2011
  11. lp rob1

    lp rob1 Modder

    Joined:
    14 Jun 2010
    Posts:
    1,530
    Likes Received:
    140
    I think that you only need SUM if you are summing things together. Eg. you won't need it for simple addition/subtraction or multiplication/division, but you will need it for the ':' function that adds all the values between the two cells you set.
    Code:
    =SUM(A3:A7)
    would give you the summation of cells A3, A4, A5, A6 and A7.

    If you think about it this way - anything that requires values outside the ones you specify, require a function to work. A3+A5 specifies both A3 and A5, but A3:A5 does not specify A4 in the middle, therefore it needs the function to figure that out.
     
  12. faugusztin

    faugusztin I *am* the guy with two left hands

    Joined:
    11 Aug 2008
    Posts:
    6,943
    Likes Received:
    268
    I know what SUM does, i don't know why the hell it is used in the formulas others posted :D.
     
  13. Ryu_ookami

    Ryu_ookami I write therefore I suffer.

    Joined:
    11 Mar 2004
    Posts:
    3,370
    Likes Received:
    145
    I had to change it any way as I realised that it was applying the wrong percentage of growth so it now looks like this

    =SUM(B3*B26/3)+B3

    So that I can have the results shown for a monthly figure but I only have to enter a quarterly growth figure and it spreads the growth over the 3 months evenly.

    BTW Has anyone workd out the formula for the second problem (post #10)
     

Share This Page