SSBA

League Information => General Board => Topic started by: BullsGM-old on July 19, 2005, 01:10:07 PM



Title: Crazy Spreadsheets
Post by: BullsGM-old on July 19, 2005, 01:10:07 PM
Ok, I admit, I suck at Excel.  I never learned it, and don't really know the 'power' of spreadsheets.  How many of you guys use Excel to keep stats and what can your spreadsheets do?

I'm interested in learning, only if it's worth while


Title: Crazy Spreadsheets
Post by: NetsGM on July 19, 2005, 01:11:33 PM
I use excel for this.  Simply because it's easy enough to paste boxscores into.

I'd like to throw it into a full-scale mysql db and run queries from that, but don't have the time.

But for this purpose, it's great.  definitely worth learning at least the basics.

For example, when a new draft comes, I simply paste the class into the spreadsheet.  Formulas are entered, and "scores" calculated automatically.  I don't even have to re-enter the formulas, convert any numbers, it just happens.  It's very nice.


Title: Crazy Spreadsheets
Post by: Anonymous on July 19, 2005, 06:13:48 PM
interested in how you do that for drafts      :)


like whats the formula.  i remember learning how to do addition and post sums and such


Title: Crazy Spreadsheets
Post by: NetsGM on July 19, 2005, 06:16:26 PM
lots of if statements.


Title: Crazy Spreadsheets
Post by: Anonymous on July 19, 2005, 06:19:12 PM
ifs?

so did you make each rating a point... then say if it is this rating, then it equals that point... i.e A- = 4 points

then just sum up the points?


Title: Crazy Spreadsheets
Post by: NetsGM on July 19, 2005, 06:25:54 PM
for example:
=IF(J9="B-",7,0)

Means, If J9 is B-, then the value is 7.  Otherwise, 0.

You have to do one of these for every possible letter, for every possible rating.

then add it all up ;)


Title: Crazy Spreadsheets
Post by: Anonymous on July 19, 2005, 06:42:37 PM
i see... J9 would be the cell... so you have to make on for every cell in that row?

and where do you put that code... in any cell?