I am trying to make a cell read "Yes' or "No" based on criterion from another sheet. Basically, if all projects under a certain package have set schedules then the cell should read "Yes" and vice versa "No".
The issue is that there are some parameters needed to determine if a project is under a certain package. A Project will not have the Release checkbox marked, it will have the Package name referenced in the other sheet, and it will have a "Yes" from the Schedule dropdown column. Something similar to this:
Ive been using this formula but it is returning a "No" even though all projects are checked "Yes". Im wondering if its including the parent row as well?
=IF(AND(COUNTIFS({Project Intake Sheet Range 5}, [Primary Column]22, {Project Intake Sheet Range 8}, =0, {Project Intake Sheet Range 4}, =1)), "Yes", "No")
Where Range 5 is the Package column, [Primary Column]22 is the specific Package Im referencing (Package 1), Range 8 is the Release column marked as unchecked, and Range 4 is the Schedule column referencing "Yes"
Can someone point me in the right direction please? Thank you!