Share via

copying a 3d reference formula

Anonymous
2011-03-15T14:12:25+00:00

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

Microsoft 365 and Office | Excel | For home | Windows

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.

0 comments No comments

Answer accepted by question author

Anonymous
2011-03-15T15:15:03+00:00

Hi

=INDIRECT("Sheet" &ROW(A1) &"!B6")

Was this answer helpful?

0 comments No comments

Answer accepted by question author

Anonymous
2011-03-15T15:12:33+00:00

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)

Was this answer helpful?

0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Anonymous
    2015-06-06T23:39:01+00:00

    Thank you.  Very simple and concise answer.

    Was this answer helpful?

    0 comments No comments