I have a worksheet with risks on there for my project. Each risk has a workstream associated with it which is in one column and then another column with a formula in it to show whether it is open and overdue (either TRUE or FALSE) so it looks something like
the below, but with many more columns and rows:
| WORKING SHEET |
|
|
| A |
B |
C |
| Workstream |
Description |
Open and Overdue? |
| Business Process |
xyxyxyx |
TRUE |
| Change |
vbvbvbvbv |
FALSE |
I then have have a summary sheet where I am trying to count by workstream how many risks each workstream has that are open and overdue in the raw data sheet, i have written the following formula but i just get VALUE error back
=COUNTIFS('working sheet'!A4:A100,A2,'working sheet'!C4:C100,"TRUE)
The A2 above refers to the name of the workstream in my summary sheet (e.g. Business Process)
When i seperate the two formulas - i.e. =COUNTIF for each criteria the formula works but obviously i need to combine them as I dont just want to know how many business process risks there are but how many are open and overdue.