View Single Post
  #2  
Old March 19th, 2010, 10:24 AM posted to microsoft.public.excel.worksheet.functions
Pete_UK
external usenet poster
 
Posts: 8,780
Default How to check if the values in a range of cells are greater than 0

Try this:

=IF(COUNTIF(B3:B5,"0")0,B1,something_else)

where you decide what you want the something_else to be (eg 0 or "").

Hope this helps.

Pete

On Mar 19, 10:19*am, DP wrote:
Basically I want to check like IF(B3:B5 0,B1), if any of the values in B3
to B5 cells are greater than 0 then I take the value from the cell B1. *How
to do it in a simple way.

If I use directly the above mentioned formula, it gives me a #VALUE error

Thanks