0% found this document useful (0 votes)
128 views1 page

Relative Worksheet References

When copying formulas between worksheets, the sheet references remain absolute rather than adjusting like cell references. To fix the reference, the formula can be manually edited or Find and Replace can update multiple formulas at once. A macro called PrevSheet can also dynamically return the value from the cell in the previous worksheet, adjusting as the formula is copied to different sheets.

Uploaded by

mihaelahristea
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
128 views1 page

Relative Worksheet References

When copying formulas between worksheets, the sheet references remain absolute rather than adjusting like cell references. To fix the reference, the formula can be manually edited or Find and Replace can update multiple formulas at once. A macro called PrevSheet can also dynamically return the value from the cell in the previous worksheet, adjusting as the formula is copied to different sheets.

Uploaded by

mihaelahristea
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Relative Worksheet References

Suppose you have a workbook with three worksheets, Sheet1, Sheet2 and Sheet3. In column A1 of
worksheet Sheet2 you have the formula =Sheet1!A1. When you copy that formula from Sheet2 to cell
A1 of Sheet3, the formula still references Sheet1. How can that be, though? Why doesn't Excel adjust
the sheet reference, like it does the cell references?

Like named ranges, Excel treats worksheet names as absolute. Each worksheet object is
independent of all other worksheets in the workbook. When you paste a formula that includes a sheet
reference, that sheet reference is left unchanged in what is pasted.

There are a couple of things you can do. One is to simply modify the formula reference after it is
pasted so that it references the correct sheet. If you have many of them to change, then you can
select all the formulas in the target worksheet (F5 | Special | Formulas) and then use Find and
Replace to replace the original worksheet name (Sheet1) with the correct worksheet name (Sheet2).

If your referencing needs are not complex, then you can use a macro approach. For instance, if you
want a formula in a particular cell to refer to a cell on the sheet previous to the current sheet, then you
can do that by macro rather easily. Consider the following macro:

Function PrevSheet(rCell As Range)

Application.Volatile

Dim i As Integer

i = rCell.Cells(1).Parent.Index

PrevSheet = Sheets(i - 1).Range(rCell.Address)

End Function

The macro looks at the current worksheet and then figures out which worksheet is before it. The
reference is then made for that worksheet. Once you've created the PrevSheet macro, here's one way
the function can be used in a cell:

=PrevSheet(A1)

This returns the value of cell A1 from the previous worksheet. If you have Sheet1, Sheet2, and
Sheet3, and you use this formula on Sheet3, then it returns the value of Sheet2!A1. If the previous
sheet is the first sheet of the workbook or it is not a worksheet, then the function returns a #Value
error.

If you later copy this formula to a different sheet (say to Sheet 5), then it pulls up the value relative to
its new location, which means it pulls up the value from Sheet4!A1.

You can also include a sheet name and the function will work just fine:

=PrevSheet(Sheet3!A5)

This version will always return Sheet2!A5 since sheet2 is the previous sheet of Sheet3.

You might also like