Excel formula!

Solved/Closed
xcel - Apr 29, 2010 at 08:02 AM
 xcel - Apr 29, 2010 at 11:49 AM
I would like to make an excel formula that

if at least 7 out of 10 cell (i.e A1 to A10) are greater than 5, then return as " accepted", otherwise "no".

1 response

rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 766
Apr 29, 2010 at 08:50 AM
TRY THIS


=IF(COUNTIF(A1:A10,">5")>=7,"ACCEPTED","NO")
0
Thank alo! it works perfect.
0