COUNTIFS and using year as one of the criteria.

Taz1pop

Board Regular
Joined
Mar 5, 2014
Messages
53
Office Version
  1. 365
Platform
  1. Windows
Hi All. I have gone round and round and still have no luck in resolving this, so any help will be much appreciated.

I have a list of items that have a status, (open, Closed, In progress). This is column C. There is also another column (E) which has a date (Short form DD,MM,YYY) which hs the date the item has been logged this can be over many years.

I then have a cell on another page (Dashboard) D19, that lets you select a year or the word ALL. (list is in a drop-down list)

I am trying that when the word ALL is selected its gives the percentage (in a pie chart) of each of the 3 statuses (i got this bit working) But when i select a year the countifs doesn't find the additional criteria for the year. I hope that makes sense.

The formulae i have at the moment is.
=IF(Dashboard!$D$19="ALL",COUNTIF('CIPS Register'!C:C,C7),COUNTIFS('CIPS Register'!E:E,Dashboard!$D$19,'CIPS Register'!C:C,C7))
 
Ok, how about
Excel Formula:
=IF(Dashboard!$D$19="ALL",COUNTIF('CIPS Register'!C:C,C7),SUMPRODUCT((YEAR('CIPS Register'!E5:E1000)=Dashboard!$D$19)*('CIPS Register'!C5:C1000=C7)))
 
Upvote 0

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Ok, how about
Excel Formula:
=IF(Dashboard!$D$19="ALL",COUNTIF('CIPS Register'!C:C,C7),SUMPRODUCT((YEAR('CIPS Register'!E5:E1000)=Dashboard!$D$19)*('CIPS Register'!C5:C1000=C7)))
Thats perfect thank you.
Now just to add in the other selector now for sites
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0
You're welcome & thanks for the feedback.
Would you mind explaining the sumproduct function please, this is new one to me.

Where ever I try putting in the site option it doesn't consider the site part. I managed to include the AND statement at the beginning so if they are both set to all then it's everything. It's just having the different criteria options below that can change, it doesn't do anything. Does it go before or after the multiplication.

I hope the above makes sense.

=IF(AND(Dashboard!$D$19="ALL",Dashboard!$D$20="All"),COUNTIF('CIPS Register'!C:C,C7),SUMPRODUCT((YEAR('CIPS Register'!$E$5:$E$5000)=Dashboard!$D$19)*('CIPS Register'!$C$5:$C$5000=C7)))

that's what I currently have
 
Upvote 0
For information on sumproduct have a look here SUMPRODUCT Function
What column should D20 match to?
Thank you i will have a read.

D20 on the Dashboard should match column H on the CIPS register tab. The only issue is the first in the drop-down list in D20 is All so if that is selected then its all sites, and can filter by year, and then visa versa can hall all for each of the sites. Its the All bit which hurts my head lol.
 
Upvote 0
How about
Excel Formula:
=COUNT(FILTER(ROW('CIPS Register'!$C$5:$C$5000),('CIPS Register'!$C$5:$C$5000=C7)*(IF(Dashboard!$D$19="All",1,YEAR('CIPS Register'!$E$5:$E$5000)=Dashboard!$D$19))*(IF(Dashboard!$D$20="All",1,'CIPS Register'!$H$5:$H$5000=Dashboard!$D$20)),""))
 
Upvote 1
Solution
How about
Excel Formula:
=COUNT(FILTER(ROW('CIPS Register'!$C$5:$C$5000),('CIPS Register'!$C$5:$C$5000=C7)*(IF(Dashboard!$D$19="All",1,YEAR('CIPS Register'!$E$5:$E$5000)=Dashboard!$D$19))*(IF(Dashboard!$D$20="All",1,'CIPS Register'!$H$5:$H$5000=Dashboard!$D$20)),""))
That is perfect and seems to work perfectly.

I am speechless, thank you so much, that is amazing. 👍
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,085
Messages
6,123,030
Members
449,092
Latest member
ikke

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