COUNTIFS - adding more than 1 criteria together

dawidmns

New Member
Joined
Aug 5, 2022
Messages
8
Office Version
  1. 2013
Platform
  1. Windows
  2. MacOS
Hi guys

I have another questions, as you can see on the picture, I am trying to add 2 criterias together, With QC - Trade and Expired Review (there will be 2 more criterias added later on: Temporary Approval and: With RM - Trade). But I am doing something wrong, could you please help? As I am getting 0 which is wrong as above just With QC shows 11.

Also, the data is from another tab, for this reason you can see Corporate Master

=COUNTIFS('Corporate Master'!F5:F1458,"Expired Review",'Corporate Master'!F5:F1458,"With QC - TRADE",'Corporate Master'!I5:I1458,">="&(TODAY()-30),'Corporate Master'!I5:I1458,"<="&(TODAY()))
11.png
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
The format for multiple COUNTIFs is =COUNTIFS(range1,criteria1,range1,criteria2)
 
Upvote 0
You can try this but it might only work if you have MS 365.
Excel Formula:
=SUM(COUNTIFS('Corporate Master'!F5:F1458,{"Expired Review","With QC - TRADE"},'Corporate Master'!I5:I1458,">="&(TODAY()-30),'Corporate Master'!I5:I1458,"<="&(TODAY())))

The countifs criteria are additive ie AND you are wanting a OR.

PS: it would be good if you updated your profile to show which version of Excel you are using since solution can vary based on what version you are using.
 
Upvote 0
Solution
Thank you it worked. Profile updated too for the future.
 
Upvote 0

Forum statistics

Threads
1,215,375
Messages
6,124,579
Members
449,174
Latest member
chandan4057

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