+ Reply to Thread
Results 1 to 5 of 5

How to Copy Absolute Cell References to Other Worksheet Pages

  1. #1
    Registered User
    Join Date
    05-05-2011
    Location
    Colorado, USA
    MS-Off Ver
    Excel 2010
    Posts
    3

    How to Copy Absolute Cell References to Other Worksheet Pages

    I created a payroll workbook and am having trouble with absolute cells and referencing the cell that I need.

    I want to be able to reference a cell on one worksheet page, for example the formula in cell E3, and have the information appear on a different worksheet within the same workbook. I've been able to do this successfully, but my next step is causing me trouble.

    I want to be able to insert rows in the first worksheet (the current week's payroll), so the formula in E3 will move to E4, but the current E3 will now have the formula that I want to reference. I want the second worksheet to ALWAYS pull the information from E3.

    After copying the cell reference into the second worksheet, I have tried entering it as $E$3, but when i go back to the first sheet and insert a line, then return to the second sheet, the cell reference has been updated to $E$4.

    Is this possible?

    Thanks for any help...

  2. #2
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: How to Copy Absolute Cell References to Other Worksheet Pages

    Hi,

    Does
    Please Login or Register  to view this content.
    help?

    Regards
    Richard Buttrey

    RIP - d. 06/10/2022

    If any of the responses have helped then please consider rating them by clicking the small star icon below the post.

  3. #3
    Registered User
    Join Date
    05-05-2011
    Location
    Colorado, USA
    MS-Off Ver
    Excel 2010
    Posts
    3

    Re: How to Copy Absolute Cell References to Other Worksheet Pages

    It worked!

    I thought for sure you must have meant $E$3, but using the $E$2 worked, but I had to add a single quote before and after the Sheet1.

    Can you tell me what this formula "says"? What do the 1 and 0 do? I'm not familiar what offset means, only that it worked...

    =OFFSET(Sheet1!$E$2,1,0)

  4. #4
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: How to Copy Absolute Cell References to Other Worksheet Pages

    Hi,

    If you have spaces in sheet names then you do indeed need single quotes around the name. The fact that you needed them suggests that your sheet was named "Sheet 1" and not "Sheet1". It is however a good idea to include them whether or not there's a space.

    This is an Offset formula. Offset formulae point to a range (or single cell) which is offset from a reference cell. In this case the reference cell is E2. The two other parameters, the values 1 & 0 refer to how many rows and columns are to be offset from the reference cell. In this case the row offset refers to row 3 (based on the reference cell row 2), and the column offset is zero, hence no offset from column E.

    A similar Offset formula to E3 could also be =OFFSET($A$1,2,4).

    The OFFSET() function can also take a 4th and 5th parameter, i,e,

    =OFFSET(Ref cell, row, column, height, width). I won't bore you with these since you generally only need them when you're summing an offset range, but you can read up on them with the standard Excel help.

    Regards

  5. #5
    Registered User
    Join Date
    05-05-2011
    Location
    Colorado, USA
    MS-Off Ver
    Excel 2010
    Posts
    3

    Re: How to Copy Absolute Cell References to Other Worksheet Pages

    You are correct in that my sheet names have a space, I have given them individual names (ie. Pay Calculations).

    When I googled offset I found some sample instructions at the Microsoft website. I'm going to check it out in the morning.

    Thank you again for you help!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1