I have a very large spreadsheet containing regional economic data forecasts up until 2100. Economic output is broken down by sector, region, year, scenario etc.
I managed to sum the regional output by using the following formula, which sums all 46 rows (for the 46 sectors), returning the regional output in a new column.
<code>
I now want to create a forumula which works on the same principle, but places the region name/year/scenario varient, each in a different column next to the aggregated regional output.
However, this forumla does not work. Are there any suggestions?
I tried something like the following (the first name is in C2), but it didn't work:
</code>
I managed to sum the regional output by using the following formula, which sums all 46 rows (for the 46 sectors), returning the regional output in a new column.
Code:
=SUM(OFFSET($E$2,(ROW()-2)*46,0,46,1))
I now want to create a forumula which works on the same principle, but places the region name/year/scenario varient, each in a different column next to the aggregated regional output.
However, this forumla does not work. Are there any suggestions?
I tried something like the following (the first name is in C2), but it didn't work:
Code:
=C2(OFFSET($C$2,(ROW()-2)*46,0,46,1))