Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
In sheet how can I check if one (or more) of 100 cells in range A1:A100 is 0 ? Ex. Formula in B2 = if [at least one of cells in range (a1:a100) is] 0 , "ok" , "no" Thanks in advance |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Mire;
=If(Min(A1:A100)0,"OK","No") -- sb "Mire" wrote in message ... Hi, In sheet how can I check if one (or more) of 100 cells in range A1:A100 is 0 ? Ex. Formula in B2 = if [at least one of cells in range (a1:a100) is] 0 , "ok" , "no" Thanks in advance |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Just as an alternative
=IF(COUNTIF(A1:A100,"0")1,"OK","No") -- HTH Bob Phillips "steve" wrote in message ... Mire; =If(Min(A1:A100)0,"OK","No") -- sb "Mire" wrote in message ... Hi, In sheet how can I check if one (or more) of 100 cells in range A1:A100 is 0 ? Ex. Formula in B2 = if [at least one of cells in range (a1:a100) is] 0 , "ok" , "no" Thanks in advance |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Summing a range of cells based on criteria in another range | Excel Worksheet Functions | |||
When entering data into a range of cells, select the entire range. | Excel Discussion (Misc queries) | |||
how to compute a range of cells based on another range of cells? | Excel Worksheet Functions | |||
how to compute a range of cells based on another range of cells? | Excel Worksheet Functions | |||
Count cells in one range based on parameters in another range | Excel Worksheet Functions |