Need Help

D

Dave 2005

Hi

This =IF(H2,MIN(10,H2),0) returns the numbers from column H with a maximum
of 10.

The formula is returning 10 if the cell is 10 or over, is something wrong.

Question: I need it to return 0 if 10 or over.

Microsoft Excel 2002

Thanks in advance

Dave
 
R

Ron Rosenfeld

Hi

This =IF(H2,MIN(10,H2),0) returns the numbers from column H with a maximum
of 10.

The formula is returning 10 if the cell is 10 or over, is something wrong.

Question: I need it to return 0 if 10 or over.

Microsoft Excel 2002

Thanks in advance

Dave

=IF(H2>=10,0,H2)


--ron
 
P

Paul Sheppard

Dave said:
Hi

This =IF(H2,MIN(10,H2),0) returns the numbers from column H with
maximum
of 10.

The formula is returning 10 if the cell is 10 or over, is somethin
wrong.

Question: I need it to return 0 if 10 or over.

Microsoft Excel 2002

Thanks in advance

Dave

Hi Dave

Try this -----> =IF(H2,MIN(10,H2),0
 
Top