I have 10 sheets in my Excel workbook. In cell D5 on sheet1, I have the number 1.
If I want that number to increase by 1 in cell D5 on sheet2, what formular should I use in cell D5 in sheet2?
The obvious answer would be:
But if I copy that formula on to sheet3, cell D5 on sheet3 also reads:
instead of reading:
So, is there a way of referencing cells in 'previous' sheets, so that the number will increase by 1 in cell D5 of all subsequent sheets?
If I want that number to increase by 1 in cell D5 on sheet2, what formular should I use in cell D5 in sheet2?
The obvious answer would be:
Code:
=Sheet1!D5+1
But if I copy that formula on to sheet3, cell D5 on sheet3 also reads:
Code:
=Sheet1!D5+1
instead of reading:
Code:
=Sheet2!D5+1
So, is there a way of referencing cells in 'previous' sheets, so that the number will increase by 1 in cell D5 of all subsequent sheets?