Using functions in OpenDocument (ods)

All non-Go discussions should go here.
Post Reply
cgbspender
Dies in gote
Posts: 37
Joined: Wed Sep 01, 2010 6:20 am
Rank: kgs 4d
GD Posts: 0
KGS: cgbspender
Location: France - Britanny
Has thanked: 5 times
Been thanked: 14 times

Using functions in OpenDocument (ods)

Post by cgbspender »

Hey,

Does anyone know how to use a percentage function or a sum function in OpenDocument ?

I did manage to make the sum function work... but, I could only make it work one line by one line. And I have more than 1000 entries, so I'd like something that will make the sums all at once.

For now it looks like this :

Code: Select all

              Column A      Column B        Column C            Column D (win ratio)
              Wins          Losses          Total of games

Player A       50              150            200                      25%
Player B

I don't have a D column yet. But I'd like one. How can I do it, so that it creates all the winratio for all players from player A to player Z, without having to re-write the same function again and again.
(and how to do with the "sum" function, in column C ?)

Thanks for the help.
edit : keep in mind, I'm really terrible at whatever uses numbers, let alone functions.. :)
Cgb'
Staying true to myself.
User avatar
LocoRon
Lives with ko
Posts: 292
Joined: Tue Aug 10, 2010 1:04 pm
Rank: 1 kyu
GD Posts: 0
KGS: LocoRon
Has thanked: 92 times
Been thanked: 80 times

Re: Using functions in OpenDocument (ods)

Post by LocoRon »

cgbspender wrote:Hey,

Does anyone know how to use a percentage function or a sum function in OpenDocument ?

I did manage to make the sum function work... but, I could only make it work one line by one line. And I have more than 1000 entries, so I'd like something that will make the sums all at once.

For now it looks like this :

Code: Select all

              Column A      Column B        Column C            Column D (win ratio)
              Wins          Losses          Total of games

Player A       50              150            200                      25%
Player B

I don't have a D column yet. But I'd like one. How can I do it, so that it creates all the winratio for all players from player A to player Z, without having to re-write the same function again and again.
(and how to do with the "sum" function, in column C ?)

Thanks for the help.
edit : keep in mind, I'm really terrible at whatever uses numbers, let alone functions.. :)
Cgb'
Ok, so first off I changed the structure a little bit to be like this:

Code: Select all

Column A       Column B      Column C        Column D            Column E (win ratio)
Player         Wins          Losses          Total of games

Player A       50              150            =SUM(B2:C2)        =SUM(B2/D2*100)%
Player B
Now you have to manually enter the wins and losses for each player, but you can easily replicate the formulas by highlighting those two cells, holding down the left mouse button on the black square in the lower right corner, and dragging it down as far as you want to go.

I've also attached a sample sheet you can work off of, if you want.
Attachments
Untitled 1.ods
Sample sheet.
(9.88 KiB) Downloaded 319 times
cgbspender
Dies in gote
Posts: 37
Joined: Wed Sep 01, 2010 6:20 am
Rank: kgs 4d
GD Posts: 0
KGS: cgbspender
Location: France - Britanny
Has thanked: 5 times
Been thanked: 14 times

Re: Using functions in OpenDocument (ods)

Post by cgbspender »

It seems it failed, or I did something wrong ?
Attachments
somme.png
somme.png (4.76 KiB) Viewed 5462 times
Staying true to myself.
User avatar
LocoRon
Lives with ko
Posts: 292
Joined: Tue Aug 10, 2010 1:04 pm
Rank: 1 kyu
GD Posts: 0
KGS: LocoRon
Has thanked: 92 times
Been thanked: 80 times

Re: Using functions in OpenDocument (ods)

Post by LocoRon »

cgbspender wrote:It seems it failed, or I did something wrong ?
Change the D2 in the formula to E2.

Edit:

Also, change the ; to a /
cgbspender
Dies in gote
Posts: 37
Joined: Wed Sep 01, 2010 6:20 am
Rank: kgs 4d
GD Posts: 0
KGS: cgbspender
Location: France - Britanny
Has thanked: 5 times
Been thanked: 14 times

Re: Using functions in OpenDocument (ods)

Post by cgbspender »

errr, sure ?
Attachments
somme.png
somme.png (4.79 KiB) Viewed 5458 times
Staying true to myself.
User avatar
LocoRon
Lives with ko
Posts: 292
Joined: Tue Aug 10, 2010 1:04 pm
Rank: 1 kyu
GD Posts: 0
KGS: LocoRon
Has thanked: 92 times
Been thanked: 80 times

Re: Using functions in OpenDocument (ods)

Post by LocoRon »

cgbspender wrote:errr, sure ?
=SOMME(C2/E2*100)%
cgbspender
Dies in gote
Posts: 37
Joined: Wed Sep 01, 2010 6:20 am
Rank: kgs 4d
GD Posts: 0
KGS: cgbspender
Location: France - Britanny
Has thanked: 5 times
Been thanked: 14 times

Re: Using functions in OpenDocument (ods)

Post by cgbspender »

hooray, worked perfect ! thanks for the help and for your patience !
Staying true to myself.
User avatar
LocoRon
Lives with ko
Posts: 292
Joined: Tue Aug 10, 2010 1:04 pm
Rank: 1 kyu
GD Posts: 0
KGS: LocoRon
Has thanked: 92 times
Been thanked: 80 times

Re: Using functions in OpenDocument (ods)

Post by LocoRon »

cgbspender wrote:hooray, worked perfect ! thanks for the help and for your patience !
Not a problem! :)
Post Reply