Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 114
Default Golf best 2 out of 4 scores

Hi I have a sheet that has 4 players per team.Their scores are recorded in
cells c7,c9,c11,c13.Now i want the 2 best scores to be recorded in another
sheet that i have named results in cells c6,c7.So only the 2 best of the 4
scores will be in the result sheet. Thanks Karl
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,388
Default Golf best 2 out of 4 scores

Hi Karl,
If you haven't got any data in cells C8, C10 and C12, then this will do what
you want.
In cell C6 on your results page, paste this formula:
=SMALL(Sheet1!C7:C13,1)
And in cell C7, paste this one:
=SMALL(Sheet1!C7:C13,2)
You'll have to replace the Sheet1 reference to whatever your score sheet is
called.

Hope that helped.
Dave


"Karl" wrote:

Hi I have a sheet that has 4 players per team.Their scores are recorded in
cells c7,c9,c11,c13.Now i want the 2 best scores to be recorded in another
sheet that i have named results in cells c6,c7.So only the 2 best of the 4
scores will be in the result sheet. Thanks Karl

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 114
Default Golf best 2 out of 4 scores

Hi Dave Thanks. I do have data in cells c6,c8,c10,c12 what adjustments will
have to be done to the formula then. Thanks Karl

"Dave" wrote:

Hi Karl,
If you haven't got any data in cells C8, C10 and C12, then this will do what
you want.
In cell C6 on your results page, paste this formula:
=SMALL(Sheet1!C7:C13,1)
And in cell C7, paste this one:
=SMALL(Sheet1!C7:C13,2)
You'll have to replace the Sheet1 reference to whatever your score sheet is
called.

Hope that helped.
Dave


"Karl" wrote:

Hi I have a sheet that has 4 players per team.Their scores are recorded in
cells c7,c9,c11,c13.Now i want the 2 best scores to be recorded in another
sheet that i have named results in cells c6,c7.So only the 2 best of the 4
scores will be in the result sheet. Thanks Karl

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,688
Default Golf best 2 out of 4 scores

Try this:

=SMALL((Sheet1!C$7,Sheet1!C$9,Sheet1!C$11,Sheet1!C $13),ROWS($1:1))

Copy down as needed.

Biff

"Karl" wrote in message
...
Hi Dave Thanks. I do have data in cells c6,c8,c10,c12 what adjustments
will
have to be done to the formula then. Thanks Karl

"Dave" wrote:

Hi Karl,
If you haven't got any data in cells C8, C10 and C12, then this will do
what
you want.
In cell C6 on your results page, paste this formula:
=SMALL(Sheet1!C7:C13,1)
And in cell C7, paste this one:
=SMALL(Sheet1!C7:C13,2)
You'll have to replace the Sheet1 reference to whatever your score sheet
is
called.

Hope that helped.
Dave


"Karl" wrote:

Hi I have a sheet that has 4 players per team.Their scores are recorded
in
cells c7,c9,c11,c13.Now i want the 2 best scores to be recorded in
another
sheet that i have named results in cells c6,c7.So only the 2 best of
the 4
scores will be in the result sheet. Thanks Karl



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 114
Default Golf best 2 out of 4 scores

Hi Biff or Dave when I put this formula into my cell c6 on the results page i
get #name? and no value. I don't know what i did wrong. Thanks Karl

"Biff" wrote:

Try this:

=SMALL((Sheet1!C$7,Sheet1!C$9,Sheet1!C$11,Sheet1!C $13),ROWS($1:1))

Copy down as needed.

Biff

"Karl" wrote in message
...
Hi Dave Thanks. I do have data in cells c6,c8,c10,c12 what adjustments
will
have to be done to the formula then. Thanks Karl

"Dave" wrote:

Hi Karl,
If you haven't got any data in cells C8, C10 and C12, then this will do
what
you want.
In cell C6 on your results page, paste this formula:
=SMALL(Sheet1!C7:C13,1)
And in cell C7, paste this one:
=SMALL(Sheet1!C7:C13,2)
You'll have to replace the Sheet1 reference to whatever your score sheet
is
called.

Hope that helped.
Dave


"Karl" wrote:

Hi I have a sheet that has 4 players per team.Their scores are recorded
in
cells c7,c9,c11,c13.Now i want the 2 best scores to be recorded in
another
sheet that i have named results in cells c6,c7.So only the 2 best of
the 4
scores will be in the result sheet. Thanks Karl






  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,688
Default Golf best 2 out of 4 scores

Post the *EXACT* formula you tried.

Biff

"Karl" wrote in message
...
Hi Biff or Dave when I put this formula into my cell c6 on the results
page i
get #name? and no value. I don't know what i did wrong. Thanks Karl

"Biff" wrote:

Try this:

=SMALL((Sheet1!C$7,Sheet1!C$9,Sheet1!C$11,Sheet1!C $13),ROWS($1:1))

Copy down as needed.

Biff

"Karl" wrote in message
...
Hi Dave Thanks. I do have data in cells c6,c8,c10,c12 what adjustments
will
have to be done to the formula then. Thanks Karl

"Dave" wrote:

Hi Karl,
If you haven't got any data in cells C8, C10 and C12, then this will
do
what
you want.
In cell C6 on your results page, paste this formula:
=SMALL(Sheet1!C7:C13,1)
And in cell C7, paste this one:
=SMALL(Sheet1!C7:C13,2)
You'll have to replace the Sheet1 reference to whatever your score
sheet
is
called.

Hope that helped.
Dave


"Karl" wrote:

Hi I have a sheet that has 4 players per team.Their scores are
recorded
in
cells c7,c9,c11,c13.Now i want the 2 best scores to be recorded in
another
sheet that i have named results in cells c6,c7.So only the 2 best of
the 4
scores will be in the result sheet. Thanks Karl






  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 114
Default Golf best 2 out of 4 scores

Hi Biff I got it to work after working with it. Thanks Much

"Biff" wrote:

Post the *EXACT* formula you tried.

Biff

"Karl" wrote in message
...
Hi Biff or Dave when I put this formula into my cell c6 on the results
page i
get #name? and no value. I don't know what i did wrong. Thanks Karl

"Biff" wrote:

Try this:

=SMALL((Sheet1!C$7,Sheet1!C$9,Sheet1!C$11,Sheet1!C $13),ROWS($1:1))

Copy down as needed.

Biff

"Karl" wrote in message
...
Hi Dave Thanks. I do have data in cells c6,c8,c10,c12 what adjustments
will
have to be done to the formula then. Thanks Karl

"Dave" wrote:

Hi Karl,
If you haven't got any data in cells C8, C10 and C12, then this will
do
what
you want.
In cell C6 on your results page, paste this formula:
=SMALL(Sheet1!C7:C13,1)
And in cell C7, paste this one:
=SMALL(Sheet1!C7:C13,2)
You'll have to replace the Sheet1 reference to whatever your score
sheet
is
called.

Hope that helped.
Dave


"Karl" wrote:

Hi I have a sheet that has 4 players per team.Their scores are
recorded
in
cells c7,c9,c11,c13.Now i want the 2 best scores to be recorded in
another
sheet that i have named results in cells c6,c7.So only the 2 best of
the 4
scores will be in the result sheet. Thanks Karl






  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,688
Default Golf best 2 out of 4 scores

You're welcome!

Biff

"Karl" wrote in message
...
Hi Biff I got it to work after working with it. Thanks Much

"Biff" wrote:

Post the *EXACT* formula you tried.

Biff

"Karl" wrote in message
...
Hi Biff or Dave when I put this formula into my cell c6 on the results
page i
get #name? and no value. I don't know what i did wrong. Thanks Karl

"Biff" wrote:

Try this:

=SMALL((Sheet1!C$7,Sheet1!C$9,Sheet1!C$11,Sheet1!C $13),ROWS($1:1))

Copy down as needed.

Biff

"Karl" wrote in message
...
Hi Dave Thanks. I do have data in cells c6,c8,c10,c12 what
adjustments
will
have to be done to the formula then. Thanks Karl

"Dave" wrote:

Hi Karl,
If you haven't got any data in cells C8, C10 and C12, then this
will
do
what
you want.
In cell C6 on your results page, paste this formula:
=SMALL(Sheet1!C7:C13,1)
And in cell C7, paste this one:
=SMALL(Sheet1!C7:C13,2)
You'll have to replace the Sheet1 reference to whatever your score
sheet
is
called.

Hope that helped.
Dave


"Karl" wrote:

Hi I have a sheet that has 4 players per team.Their scores are
recorded
in
cells c7,c9,c11,c13.Now i want the 2 best scores to be recorded
in
another
sheet that i have named results in cells c6,c7.So only the 2 best
of
the 4
scores will be in the result sheet. Thanks Karl








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
golf handicap 4 of last 5 scores Golf.nut1 Excel Discussion (Misc queries) 15 April 3rd 08 06:11 AM
Averaging Golf Scores Jerry Excel Worksheet Functions 3 May 16th 06 05:43 AM
Summary statistics for a golf scores spreadsheet Neuman Excel Worksheet Functions 3 May 9th 06 06:53 AM
conditional Formatting golf scores Tommy Excel Discussion (Misc queries) 9 April 20th 06 06:38 PM
Golf Handicap Using Last 5 Scores Golf League Schedule Excel Worksheet Functions 5 May 13th 05 12:14 AM


All times are GMT +1. The time now is 06:48 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"