See attached.
In each sheet, in I2 to count Yellow:
=SUMPRODUCT(--($E$2:$E$9<>""),--($F$2:$F$9=""),--(TODAY()>=$E$2:$E$9+10),----(TODAY()<=$E$2:$E$9+20))
in I3 to count Orange:
=SUMPRODUCT(--($E$2:$E$9<>""),--($F$2:$F$9=""),--(TODAY()>=$E$2:$E$9+20),--(TODAY()<=$E$2:$E$9+30))
and in I4 to count Red:
=SUMPRODUCT(--($E$2:$E$9<>""),--($F$2:$F$9=""),--(TODAY()>=$E$2:$E$9+30))
adjust the ranges to suit.. No whole column references.
Then in summary sheet, list the sheet names in A2 down and in B2, for Yellow:
=INDIRECT("'"&$A2&"'!I2")
copied down
in C2, For Orange:
=INDIRECT("'"&$A2&"'!I3")
copied down
in D2, For Red:
=INDIRECT("'"&$A2&"'!I4")
copied down
Bookmarks