how to add figures from multiple worksheets in excel using ranges -
i have multiple worksheets using same template have summary page , have formula works individual sheet
=sumproduct(--(sheet1!f4:sheet1!f500>=a1),--(sheet1!f4:sheet1!f500
the formula checks relevant ranges on sheet 1 , returns values in boxes in date range specified in a1 , a2
the problem want multiple sheets , use 3d reference.
i have tried
=sumproduct(--(sheet1:sheet3!f4:sheet1:sheet3!f500>=a1),--(sheet1:sheet3!f4:sheet1:sheet3!f500
and thrown in brackets safe
=sumproduct(--((sheet1:sheet3!f4):(sheet1:sheet3!f500>=a1)),--((sheet1:sheet3!f4):(sheet1:sheet3!f500)
neither of these work , getting #name? error
any ideas appreciated
thanx in advance
gary
your formulas truncated, trying count dates between a1 , a2 inclusive? can't use 3d references in sumproduct. in excel 2007 use formula
=sumproduct(countifs(indirect("'"&g1:g3&"'!f4:f500"),">="&a1,indirect("'"&g1:g3&"'!f4:f500"),"<="&a2))
where have sheet names listed in g1:g3
Comments
Post a Comment