formula checking if all cells are greater than x

T

Tami

Hi....

i need a formula that asks if cell A1>3 and B1> 3 and c1>3 and D1>3 then
return "ALL", otherwise "No"...in other words if all the cells in A1:D1 are
greather than 3 then "ALL".
anyone?....
 
S

Shane Devenshire

Hi,

If all cells will contain numbers, no blanks and no text then

=IF(MIN(A1:D1)>3,"All","No")

otherwise the slightly modified version of Mike's to match your request:

=IF(COUNTIF(A1:D1,">3")=4,"All","No")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top