EliseFreedman
Programmer
Hi there
I have individual worksheets for each week of the year (the spreadsheet wasnt designed by me). Each 4 week period is then summarised in what the worksheet creator has called Period Rollup. The individual worksheets are called FW 1 Data, FW 2 Data, FW 3 Data. Each worksheet has the same layout. In the period rollup worksheet i want to create a formula that adds the formulas for each of the 4 weeks. I can create these formulas easily enough but then would have to go through the same process for each separate 4 week period. This morning someone on here suggested reading up on the INDIRECT function for referencing the different worksheets. I am now working on that. I have created another worksheet called Sheets with a table in it as below
FW#
FW 1
2
3
4
5
6
7
8
In the Indirect Formula I am trying to refer to the different sheets eg.
Where sheets!A2 contains the string "FW" and Sheets!B2 contains the sheet number. The cell B3 stays the same in each worksheet. It is just the name of the worksheet that changes. When I try the above formula I just get #ref. Im not sure what is wrong with the formula and also cant really see how this is going to solve my problem because obviously I am still going to have to go through the formulas and change the formula from B2 to B3 to B4 etc
Can anyone help
I have individual worksheets for each week of the year (the spreadsheet wasnt designed by me). Each 4 week period is then summarised in what the worksheet creator has called Period Rollup. The individual worksheets are called FW 1 Data, FW 2 Data, FW 3 Data. Each worksheet has the same layout. In the period rollup worksheet i want to create a formula that adds the formulas for each of the 4 weeks. I can create these formulas easily enough but then would have to go through the same process for each separate 4 week period. This morning someone on here suggested reading up on the INDIRECT function for referencing the different worksheets. I am now working on that. I have created another worksheet called Sheets with a table in it as below
FW#
FW 1
2
3
4
5
6
7
8
In the Indirect Formula I am trying to refer to the different sheets eg.
Code:
=INDIRECT(Sheets!A2&Sheets!B2&" data"&"!B3")
Can anyone help