I have this spreadsheet: https://docs.google.com/spreadsheets/d/1nQzpJ1cOT8kdo-b_vFFoSIHyLMhqd__Cv4SipncVTnA/edit?usp=sharing
In Sheet 2:
A B C D
col1 col2 col3 col4
1 2 3 4
2 4 6 8
1 3 5 7
Then I want to copy all these numbers in Sheet1, so in Sheet 1 I have this formula in the cell A3:
A3: =IFERROR(INDIRECT("'"&B2&"'!A2:O"),"")
Where in B2 of Sheet1 I have the string "Sheet2".
Everything works fine. However, If I try to modify one of the cells which is referenced in Sheet1 (for example B3) I get
#REF error
Why is this and How can I avoid it?