Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
AlienBeans
 
Posts: n/a
Default Hope someone here can help me


I'm not that knowledgeable on excel, and need a little help. I'm
confident Excel can do what i want, just don't know how to get it set
up.

I run a weekly college football pickem contest and want to set up excel
to do the scoring for me. We pick multiple games every saturday, and
some games are worth 1 point, and more important games are worth more.
What I want to do, is be able to set up these matchups and point value
for each, then when the games are over, simply type in the winner, and
have it match every player that has that team and add the respective #
of points. See, I have anywhere from 20 to 50 people a week
participating, and it takes forever now to score all players entries.
Can somebody here help me set this up? Thanks in advance.


--
AlienBeans
------------------------------------------------------------------------
AlienBeans's Profile: http://www.excelforum.com/member.php...o&userid=32352
View this thread: http://www.excelforum.com/showthread...hreadid=521080

  #2   Report Post  
Posted to microsoft.public.excel.misc
Dominic
 
Posts: n/a
Default Hope someone here can help me

AlienBeans,

I would set up a lookup table.

Check Debra Dalgleish's site for a great explanation:
http://www.contextures.com/xlFunctions02.html

Basically, I would probably set up one set of column headings like: GameID,
Team1, Team2, Winner, PointValue. Enter the week's games here.

Then another set of column headings like: Player, GameID, Pick, Points

Then use a VLookup function to return the points for each pick by a player.

Then I would either use a PivotTable on the player pick table to summarize
the data, or you could use some SumIf functions. I would use a Pivottable
personally.

HTH


"AlienBeans" wrote:


I'm not that knowledgeable on excel, and need a little help. I'm
confident Excel can do what i want, just don't know how to get it set
up.

I run a weekly college football pickem contest and want to set up excel
to do the scoring for me. We pick multiple games every saturday, and
some games are worth 1 point, and more important games are worth more.
What I want to do, is be able to set up these matchups and point value
for each, then when the games are over, simply type in the winner, and
have it match every player that has that team and add the respective #
of points. See, I have anywhere from 20 to 50 people a week
participating, and it takes forever now to score all players entries.
Can somebody here help me set this up? Thanks in advance.


--
AlienBeans
------------------------------------------------------------------------
AlienBeans's Profile: http://www.excelforum.com/member.php...o&userid=32352
View this thread: http://www.excelforum.com/showthread...hreadid=521080


  #3   Report Post  
Posted to microsoft.public.excel.misc
AlienBeans
 
Posts: n/a
Default Hope someone here can help me


Thanks. thiat is way over my head, but perhaps i can figure it out.
thanks again.


--
AlienBeans
------------------------------------------------------------------------
AlienBeans's Profile: http://www.excelforum.com/member.php...o&userid=32352
View this thread: http://www.excelforum.com/showthread...hreadid=521080

  #4   Report Post  
Posted to microsoft.public.excel.misc
Dominic
 
Posts: n/a
Default Hope someone here can help me

Give it a go and write back with specific questions.

To get you started:

A1 - GameID
B1 - Team1
C1 - Team2
D1 - Winner
E1 - Points

A2 - 1
B2 - Texas
C2 - USC
D2 - Texas
E2 - 5

G1 - Player
H1 - GameID
I1 - Pick
J1 - Points

G2 - Tom
H2 - 1
I2 - Texas
J2 - "=vlookup(i2,d2:e100,2,false)"

Then run a pivot table on G1:J100. Put Player on the left side (row area)
and Points (Sum) in the Data area (middle).

HTH


"AlienBeans" wrote:


Thanks. thiat is way over my head, but perhaps i can figure it out.
thanks again.


--
AlienBeans
------------------------------------------------------------------------
AlienBeans's Profile: http://www.excelforum.com/member.php...o&userid=32352
View this thread: http://www.excelforum.com/showthread...hreadid=521080


  #5   Report Post  
Posted to microsoft.public.excel.misc
AlienBeans
 
Posts: n/a
Default Hope someone here can help me


Thanks a bunch. i certainlly appreciate the help. is there really a
need for the GAMEID? dont mind it, just curious. the vlookup is
really way over my head....


--
AlienBeans
------------------------------------------------------------------------
AlienBeans's Profile: http://www.excelforum.com/member.php...o&userid=32352
View this thread: http://www.excelforum.com/showthread...hreadid=521080



  #6   Report Post  
Posted to microsoft.public.excel.misc
Dominic
 
Posts: n/a
Default Hope someone here can help me

There really isn't a need for GameID, except to help you keep track of which
games are which. The formulas will work without them.

the vlookup basically works like:

"=vlookup(i2,d2:e100,2,false)"

look for value in cell I2 (Texas) in the cells (D2:E100) where you have your
game information. When you find Texas, give me the value in row 2. The False
means find an exact match, if there is no exact match, then you will get an
error.

Try this out with some sample data and let me know how it goes.

Your welcome for the help.


"AlienBeans" wrote:


Thanks a bunch. i certainlly appreciate the help. is there really a
need for the GAMEID? dont mind it, just curious. the vlookup is
really way over my head....


--
AlienBeans
------------------------------------------------------------------------
AlienBeans's Profile: http://www.excelforum.com/member.php...o&userid=32352
View this thread: http://www.excelforum.com/showthread...hreadid=521080


  #7   Report Post  
Posted to microsoft.public.excel.misc
AlienBeans
 
Posts: n/a
Default Hope someone here can help me


dang, that really works. Here's another question. I'm concerned about
the format a little. The reason is, that we usually have anywhere from
20-40 players participating, and we are usually picking anywhere from
12-20 games a week. When the player name going down, the sheet could
go on forever. Could this same thing be formated with each PLAYERNAME
taking a column, with all that players picks listed underneath? Then
have the point total show up at the bottom of the spreadsheet?


--
AlienBeans
------------------------------------------------------------------------
AlienBeans's Profile: http://www.excelforum.com/member.php...o&userid=32352
View this thread: http://www.excelforum.com/showthread...hreadid=521080

  #8   Report Post  
Posted to microsoft.public.excel.misc
AlienBeans
 
Posts: n/a
Default Hope someone here can help me


Also, I'm having a problem understanding the pivot table. I just can't
seem to get this to work properly.


--
AlienBeans
------------------------------------------------------------------------
AlienBeans's Profile: http://www.excelforum.com/member.php...o&userid=32352
View this thread: http://www.excelforum.com/showthread...hreadid=521080

  #9   Report Post  
Posted to microsoft.public.excel.misc
Dominic
 
Posts: n/a
Default Hope someone here can help me

Sorry for the delay. I've been swamped.

Hope to get on a little later this afternoon.

What does the pivot table look like?

"AlienBeans" wrote:


Also, I'm having a problem understanding the pivot table. I just can't
seem to get this to work properly.


--
AlienBeans
------------------------------------------------------------------------
AlienBeans's Profile: http://www.excelforum.com/member.php...o&userid=32352
View this thread: http://www.excelforum.com/showthread...hreadid=521080


  #10   Report Post  
Posted to microsoft.public.excel.misc
AlienBeans
 
Posts: n/a
Default Hope someone here can help me


I'm too clueless to figure it out. Do you mind emailing me?

Shoot me one at auburn2005 at gmail.com


--
AlienBeans
------------------------------------------------------------------------
AlienBeans's Profile: http://www.excelforum.com/member.php...o&userid=32352
View this thread: http://www.excelforum.com/showthread...hreadid=521080

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
LAST HOPE....Time is Ticking!! Miss Atlanta Excel Discussion (Misc queries) 4 March 7th 06 03:36 AM
I hope you understand my qwuestion Need help with sumif Excel Discussion (Misc queries) 2 January 25th 06 09:13 PM
Templete question...I hope there is an answer Rookie000 Excel Worksheet Functions 3 January 15th 06 04:04 AM
VLOOKUP() Question... i hope Adam Kroger Excel Discussion (Misc queries) 2 November 29th 05 10:22 PM
Help Please - Match & Index Functions (I hope)! baz Excel Discussion (Misc queries) 0 September 2nd 05 02:42 PM


All times are GMT +1. The time now is 07:10 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"