
Originally Posted by
FDibbins
As Ron says, merged cells are the devils work, you should avoid them if at all possible.
I have come up with a suggestion, using a helper column on Data and a helper row in Graph
1. In Data G2, copied down, use this...
=IF(A2="",G1,A2)
2. in Graph B29, copied across, use this...
=IF(B30="",A29,B30)
Both of these can be hidden if you want.
Then for thePending...
=IF(COUNTIFS(Data!$G$2:$G$62,Graph!B$29,Data!$B$2:$B$62,Graph!B$31,Data!$D$2:$D$62,"<>")=0,"",INDEX(Data!$F$2:$F$62,MATCH(B29&B31,INDEX(Data!$G$2:$G$62&Data!$B$2:$B$62,0),0)))
copied across
for Submitted...
=IF(COUNTIFS(Data!$G$2:$G$62,Graph!B$29,Data!$B$2:$B$62,Graph!B$31,Data!$D$2:$D$62,"<>")=0,INDEX(Data!$F$2:$F$62,MATCH(B29&B31,INDEX(Data!$G$2:$G$62&Data!$B$2:$B$62,0),0)),"")
copied across
(Hope I got those 2 the right way round)
Bookmarks