COUNTIFS combining AND with OR logic

WBJ

New Member
Joined
Jan 16, 2010
Messages
11
In col. A - Dates
In col. B - Statuses (Complete,Partial,NotStarted)

I want to know the number of "Completes" and "Partials" for a given date. That is: COUNTIFS (Dates,"Date",(Status,"=Complete" or Status,"=Partial"))
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
If those are the only 3 possible entries,
then it's easier to say Does Not Equal "NotStarted"
i.e. If it does not equal "NotStarted", it must therefore equal either "Complete" or "Partial"

Try

=COUNTIFS(Dates,"Date",Status,"<>NotStarted")


Hope that helps.
 
Upvote 0
In col. A - Dates
In col. B - Statuses (Complete,Partial,NotStarted)

I want to know the number of "Completes" and "Partials" for a given date. That is: COUNTIFS (Dates,"Date",(Status,"=Complete" or Status,"=Partial"))
One way...

=SUM(COUNTIFS(Dates,"Date",Status,{"Complete","Partial"}))
 
Upvote 0

Forum statistics

Threads
1,224,592
Messages
6,179,786
Members
452,942
Latest member
VijayNewtoExcel

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top