I'm using Office 365
This may be a little ambitious but what I'm trying to do is sum a specific Cell across multiple sheets, multiply that sum against a number on another sheet in a large array form?
Example:
What I'm trying to do is SUMPRODUCT, essentially as:
I currently know the formula: =SUMPRODUCT(SUM(INDIRECT("'"&NAMED_SHEET_RANGE&"'!A1")),MultiplySheet!B1) will work for taking the sum of A1 across all sheets and multiplying it by B1, but I need this done for A1:A39 to be multiplied against B1:B39 without copying the formula 39 times if its even possible.
This may be a little ambitious but what I'm trying to do is sum a specific Cell across multiple sheets, multiply that sum against a number on another sheet in a large array form?
Example:
SumSheet1 | SumSheet2 | SumSheet3 | MultiplySheet |
A1 | A1 | A1 | B1 |
A2 | A2 | A2 | B2 |
A3 | A3 | A3 | B3 |
A4 | A4 | A4 | B4 |
What I'm trying to do is SUMPRODUCT, essentially as:
- Array 1
- Sum of A1 on Sheets 1-3
- Sum of A2 on Sheets 1-3
- Sum of A3 on Sheets 1-3
- Sum of A4 on Sheets 1-3
- Array 2
- MultipleSheet!B1:B4
I currently know the formula: =SUMPRODUCT(SUM(INDIRECT("'"&NAMED_SHEET_RANGE&"'!A1")),MultiplySheet!B1) will work for taking the sum of A1 across all sheets and multiplying it by B1, but I need this done for A1:A39 to be multiplied against B1:B39 without copying the formula 39 times if its even possible.