Depends partly on the variety of items...
If there is nothing DAD* related that is not valid for aggregation then we might get away with wildcards within the SUMIFS:
=SUMIFS('1'!$C:$C,'1'!$A:$A,"DAD*",'1'!$B:$B,">2")
If, however, you have items like DADO which are to be excluded then you can use something like
=SUM(SUMIFS('1'!$C:$C,'1'!$A:$A,{"DAD","DAD1","DAD2"},'1'!$B:$B,">2"))
if your criteria (eg DAD,DAD1 etc) are "variables" (to be linked to cells) the above construct would not work given the inline array { } ... post back if nec.
Bookmarks