COUNTIFS AND SUM OF CRITERIAS

Pietro Di Micio

Board Regular
Joined
Apr 29, 2020
Messages
51
Office Version
  1. 365
Platform
  1. MacOS
Hello Folks,

My challenge:
1) I have items on column "A" and when I find the name I have the state in column "B" BUT when I find this COUNTIFS I need to count 3 of 5 regions, in other words, count a mutiple criteria inside the COUNTIFS.

2) I did it by adding a lot of COUNTIFS+COUNTIFS+ etc... but I do believe that maybe there is something more clean tho show the same result.

3) I checked out in other posts but did not find something similar.

Someone could help me on this formula?

Tks
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
Something like

=SUM(COUNTIFS(B:B,{"region1","region2"}))

You can add as many items as needed in the array, or you can use a range of cells for the criteria.
 
Upvote 0
Something like

=SUM(COUNTIFS(B:B,{"region1","region2"}))

You can add as many items as needed in the array, or you can use a range of cells for the criteria.
I am trying this but without success:

COUNTIFS(C$44:$C$1000;"Yasmim Lee";$M$44:$M$1000;"OP";SUM(COUNTIFS($G$44:$G$1000;"Booked/Won"; "Committed"; "Probable")))

Because I have to conclude the first step and then sum ("Booked/Won"; "Committed"; "Probable"); I mean, I need to sum only this criterias inside Yasmim Lee and OP

Any suggestion?
 
Upvote 0
You're missing { and } from the formula, also it all needs to be in one COUNTIFS function,

SUM(COUNTIFS(C$44:$C$1000;"Yasmim Lee";$M$44:$M$1000;"OP";$G$44:$G$1000;{"Booked/Won"; "Committed"; "Probable"})))
 
Upvote 0
You're missing { and } from the formula, also it all needs to be in one COUNTIFS function,

SUM(COUNTIFS(C$44:$C$1000;"Yasmim Lee";$M$44:$M$1000;"OP";$G$44:$G$1000;{"Booked/Won"; "Committed"; "Probable"})))
Great! worked! Thanks a lot
 
Upvote 0
You're missing { and } from the formula, also it all needs to be in one COUNTIFS function,

SUM(COUNTIFS(C$44:$C$1000;"Yasmim Lee";$M$44:$M$1000;"OP";$G$44:$G$1000;{"Booked/Won"; "Committed"; "Probable"})))
Just one more question... If I need to add to this formula above a SUM of another Column; how can I do this? I mean, sum off all numbers realted to Booked...Commited and Probable...

Tks
 
Upvote 0
Something like this to SUM column A based on the same criteria.

=SUM(SUMIFS($A$44:$A$1000,$C$44:$C$1000;"Yasmim Lee";$M$44:$M$1000;"OP";$G$44:$G$1000;{"Booked/Won"; "Committed"; "Probable"})))
 
Upvote 0

Forum statistics

Threads
1,215,479
Messages
6,125,041
Members
449,206
Latest member
Healthydogs

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