View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Mike H Mike H is offline
external usenet poster
 
Posts: 11,501
Default Don't use cells that have a 0 value

try

=INDEX('Sign-up sheet'!B3:B124,MATCH(MIN(IF('Sign-up
sheet'!F3:F1240,'Sign-up sheet'!F3:F124)),'Sign-up sheet'!F3:F124))

Mike

"Dave" wrote:

I have a formula:

=INDEX('Sign-Up Sheet'!B3:B124,MATCH(SMALL('Sign-Up
Sheet'!F3:F124,1),'Sign-Up Sheet'!F3:F124,0))

B3:B124 are names in my list of golfers
F3:F124 are handicaps of the golfers

Rows 72 through 124 are blank in column B because I might have more players.
Column F has the formula =SUM()/2 for each row, which is the handicap and
since there is no data in 72-124 it returns 0.00.

How can I stop the formula from using the cells that have 0.00?

Thanks,
Dave