A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi
=INDIRECT("Sheet" &ROW(A1) &"!B6")
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Help
I want to copy the 3d reference and have the sheet number change ie: =sheet1$B$6 the next one would be =sheet2$B$6 then =sheet3$B$6
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
Hi
=INDIRECT("Sheet" &ROW(A1) &"!B6")
Answer accepted by question author
Where are you copying it to? Down? Across?
Since you are within the same workbook, you can use INDIRECT to help you out. Assuming you are copying downward, formula is:
=INDIRECT("sheet"&ROW(A1)&"!B6")
Note that I did not need to include absolute reference symbols as the formula uses a static text string for that part. If you want to copy the formula across, use COLUMN(A1) instead of ROW(A1)
Thank you. Very simple and concise answer.