Forum Discussion
danazee
Jan 21, 2022Copper Contributor
How to Copy Formulas From Different Worksheets
I am trying to simplify the inventory sheets we are using to make the process easier. In an excel file, I will have one sheet for each date we take inventory. We create the sheet each week that...
SergeiBaklan
Jan 22, 2022Diamond Contributor
Assuming your periods are 7 days and sheets are named as mmddyy, you may add helper cell
It could be at any place of the worksheet. With that
E3:
=INDIRECT( "'" & $D$4 & "'!" & CELL("address", D3))+1
B12:
=INDIRECT( "'" & $D$4 & "'!" & CELL("address", D12))
I12:
=INDIRECT( "'" & $D$4 & "'!" & CELL("address", G12))
drag latest two down.
After you copy/paste worksheet and enter proper date in D2 formulae take data from previous week sheet.
In genera it's more reliable not to reference cell in another sheet but use any lookup function to pickup value based on inventory code. But that will require to restructure sheets a bit.
danazee
Feb 17, 2022Copper Contributor
SergeiBaklan Thank you so much for your help! Truly appreciated!
- SergeiBaklanFeb 17, 2022Diamond Contributor
danazee , you are welcome