Hi I have several sheets that I gets data from for sales and then copy them through referencing to other sheets. I would like to use offset functions to get the remainder of the data once I copy the first column automatically.
Usually I would do =+'Sheet1'!A1, from here on onwards I would like to use offset function or any other function like Address or Indirect functions to get the sheet to auto update all data in cells C3, D3, and E3. What I cant figure out is how to get the relevant sheet name, row and column numbers from A3. If there is a way through <acronym title="visual basic for applications">VBA</acronym> or just a inbuilt function, help me please.
Example below:
<tbody>
</tbody>
The result in A3 will be 10 and B3 will be 20, now I want a function which can analyze A3 or B3 and autofill C3, D3 and E3 with 30, 40 and 50 respectively.
Usually I would do =+'Sheet1'!A1, from here on onwards I would like to use offset function or any other function like Address or Indirect functions to get the sheet to auto update all data in cells C3, D3, and E3. What I cant figure out is how to get the relevant sheet name, row and column numbers from A3. If there is a way through <acronym title="visual basic for applications">VBA</acronym> or just a inbuilt function, help me please.
Example below:
A | B | C | D | E | |
1 | 10 | 20 | 30 | 40 | 50 |
2 | |||||
3 | =Sheet1!A1 | =+B1 | |||
4 | |||||
5 |
<tbody>
</tbody>
The result in A3 will be 10 and B3 will be 20, now I want a function which can analyze A3 or B3 and autofill C3, D3 and E3 with 30, 40 and 50 respectively.