COUNTIFS with multiple conditions

rz6657

New Member
Joined
Sep 26, 2007
Messages
19
I'm currently using the formula below to count the # of "In Progress" (column M) projects where the SI = 40500 (column K) and the deployment date is equal to / greater than 2018 (column N). However, the "In Progress" has been split into 4 different areas that still equate to being In Progress. I want all 4 counted under this formula, same cell but I'm stuck as to how.


=COUNTIFS(TechDev!M:M,D27,TechDev!K:K,D2,TechDev!N:N,">="&DATE(R2,1,1))

Four new areas:

1. Deployment
2. Development
3. New
4. Requirements

I'd attach a file but I'm not allowed...

thx
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
By 4 different areas do you mean 4 different columns? Easiest way would be to do the sum of 4 different countifs if so. This presumes only one of those columns would be filled at any one time.
 
Upvote 0
No, still all in the same column it just changed from In progress (only 1) to 4 different in the same column---
 
Upvote 0
Like this?

=SUM(COUNTIFS(TechDev!M:M,{"Deployment","Development","New","Requirements"},TechDev!K:K,D2,TechDev!N:N,">="&DATE(R2,1,1)))
 
Upvote 0

Forum statistics

Threads
1,223,904
Messages
6,175,295
Members
452,631
Latest member
a_potato

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