Title: Any excel experts about? Post by: ifm on January 07, 2008, 07:26:24 PM Hello, i need to modify a spreadsheet i found online.
It's currently for a football league but i want to change it to a darts individual league. The problem i am having is that the points system is not what i want, currently it awards points for win, lose and draw but i want it to be: 5 points for 3-0 4 points for 2-1 1 point for 1-2 0 points for 0-3 Its been years since i mucked about with excel and i don't have the time to relearn it as the league starts tomorrow!!! Thanks for any help, file is here: http://cid-89088a19a0d936ba.skydrive.live.com/browse.aspx/Public Title: Re: Any excel experts about? Post by: M3boy on January 07, 2008, 07:30:51 PM I may take a look later for you if I get time
Title: Re: Any excel experts about? Post by: Grier78 on January 07, 2008, 07:34:20 PM I am looking at it now, will have it ready in a couple of hours. Msg me your email address and I will send it you when its done.
Title: Re: Any excel experts about? Post by: M3boy on January 07, 2008, 07:35:07 PM I am looking at it now, will have it ready in a couple of hours. Msg me your email address and I will send it you when its done. Saves me a job then ;) Title: Re: Any excel experts about? Post by: MKKfish on January 07, 2008, 07:53:05 PM (1) Assuming you are going to key the result as "3-0", the cell in which you type the result will need to be formatted as text.
(2) Lets say you are using Columd D for the result and starting at Row 6. Choose a column over to the right, say 'M' to start your formulae. In M6 insert formula If(D6="3-0",5,0) In N6 insert formula If(D6="2-1",4,0) In O6 insert formula If(D6="1-2",1,0) In P6 insert formula If(D6="0-3",0,0) This one really redundant but included it anyway Then in what ever cell you want the points tally displayed, assuming you want it on the same row as the match, insert formula =sum(M6:P6). Copy down as required. Title: Re: Any excel experts about? Post by: RichEO on January 07, 2008, 11:09:13 PM Sorted it? I'll make the changes if your still stuck.
Title: Re: Any excel experts about? Post by: ifm on January 07, 2008, 11:23:18 PM Sorted it? I'll make the changes if your still stuck. Sorted, exactly as described, so grateful. |