I notice that those aren't true month-end dates.
Assuming you want to use fiscal-month-end dates
try this regular formula copied across and down
B29: =SUMPRODUCT(($A$3:$A$23=$A29)*(TEXT($B$2:$FG$2,"YYYYMM")=TEXT(B$28,"YYYYMM"))*(DAY($B$2:$FG$2)<=DAY(B$28))*$B$3:$FG$23)
or maybe this:
B29: =SUMPRODUCT(($A$3:$A$23=$A29)*($B$2:$FG$2>=(EOMONTH(B$28,-1)+1))*($B$2:$FG$2<=(B$28))*$B$3:$FG$23)
If you meant to use true month-end dates, try this:
B29: =SUMPRODUCT(($A$3:$A$23=$A29)*(TEXT($B$2:$FG$2,"YYYYMM")=TEXT(B$28,"YYYYMM"))*$B$3:$FG$23)
Does that help?
I have concerns that true end-of-month dates in the source data will be omitted, though. How do you want those handled?
Bookmarks