I need to get sum of cell A1 of sheets from 1 to 5. It works fine with the direct formula which shows below:
=SUM('1:5'!A$1)
I also need to delete these sheets anytime and recreate them. As soon as I delete sheets 1:5
, the formula results in #REF
error.
To avoid this issue, I used indirect formula like below:
=SUM(INDIRECT("'1:5'!A1"))
However, it did not work and gave me #REF
error. What I am doing wrong in above formula?
Below is a link to sample file if you need it: https://drive.google.com/open?id=0B7gzonuQsNbvS3R5MXRUX294cFU