Thread: [Solved] Counting Formula
View Single Post
 
Old 06-19-2011, 03:19 AM
Colin Legg's Avatar
Colin Legg Colin Legg is offline Windows 7 32bit Office 2010 32bit
Expert
 
Join Date: Jan 2011
Location: UK
Posts: 369
Colin Legg will become famous soon enough
Default

Hi Karen,

To get the count of students who have completed all the tests:
Code:
=COUNTIFS(B2:B100,"<>",D2:D100,"Yes",E2:E100,"Yes",F2:F100,"Yes")
Let's say you put that formula in cell H2. Then, to get the count of students who have not completed all three tests you could use this formula:
Code:
=COUNTIF(B2:B100,"<>")-H2
Adjust the ranges to suit (I have assumed that row 1 contains column headers).
__________________
Colin

RAD Excel Blog
Reply With Quote