Countif does not work properly

Excelquestion35

Board Regular
Joined
Nov 29, 2021
Messages
53
Office Version
  1. 2016
Platform
  1. Windows
Hi all,

For some reason I can not find the fix for a an easy Countifs function.

Rich (BB code):
=COUNTIFS($D13:$S13;">"&3;$D1:$T7;Overview!$B13)/VLOOKUP(B13;Table2[#All];2;FALSE)
leads to an error while below one is working fine as it should be, but this formula is not convenient to drag down since I have to adjust the row it looks for per department.

Rich (BB code):
=COUNTIFS($D14:$S14;">"&3;$D$1:$T$1;Overview!$B14)/VLOOKUP(B14;Table2[#All];2;FALSE)

The Vlookup is just a number that counts the number of processes where the department is written in red above the code, so is not in scope for the issue.

1676291456645.png
 
Last edited by a moderator:

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
I cannot see how the second formula works.
From the COUNTIFS Help ..
Each additional range must have the same number of rows and columns as the criteria_range1 argument.
.. yet your second formula above has one range going from D:S and another going from D:T. That is, a different number of columns.

You first formula is even more uneven. It has ..
- one range D:S x 1 row
- one range D:T x 7 rows
That is, different number of columns and different number of rows.

BTW, if you want to bold, use the RICH code tags, not the VBA tags.
 
Upvote 0
Thank you for your reply and info.

I am actually looking for a way in which it counts within the 7 rows instead of the first row. To elaborate a bit more on what I want to achieve; I want to count the number of processes (the columns) in which the value is higher than 3 and divide that by the amount of processes per department. The formula is now build this way that I manually check in which the row for which it counts is manually adjusted. D2S department must be view in the first row, while when the department S2F - 5 Shift must be counted based on the third row values.

Currently the formula is not easy to manage; as soon as the department changes, the formula must manually be adjusted as well.
That's why I inserted the range of 7 rows (D1:T7), but then the formula is not working any longer. Looks like it is not going to work with the countif function based on the description then.
Do you know if there is another way to do this by any chance?
 
Upvote 0
What about this COUNTIFS?

Excel Formula:
=COUNTIFS($D14:$S14,">"&3,INDEX($D$1:$S$7,MATCH(Overview!$B14,$C$1:$C$7,0),0),"?*")/VLOOKUP(B14,Table2[#All],2,FALSE)
 
Upvote 0
Solution
You're welcome. Thanks for the confirmation. :)
 
Upvote 0

Forum statistics

Threads
1,214,581
Messages
6,120,372
Members
448,957
Latest member
BatCoder

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