+ Reply to Thread
Results 1 to 7 of 7

Absolute address problem

  1. #1
    Registered User
    Join Date
    08-17-2010
    Location
    Toronto, Canada
    MS-Off Ver
    Excel 2003
    Posts
    7

    Absolute address problem

    I like to copy cell A1 in Sheet1 into cell A1 in Sheet2
    So in cell A1 in Sheet2 I put the following =Sheet1!$A$1
    I used obsolute addresses – but when I cut and paste A1 in sheet1 into new location – reference address in Sheet2 changed also.
    What I’m doing wrong?
    Thx in advance
    Amada
    Last edited by Amada; 08-23-2010 at 12:57 PM.

  2. #2
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: Absolute address problem

    An example workbook?
    Entia non sunt multiplicanda sine necessitate

  3. #3
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Absolute address problem

    If you want Sheet2!A1 to be equal to contents of Sheet1!A1 at all times then:

    Sheet2!A1
    =INDEX(Sheet1!$1:$65536,ROW(),COLUMN())

    or

    =INDIRECT("Sheet1!RC",FALSE)

  4. #4
    Registered User
    Join Date
    08-17-2010
    Location
    Toronto, Canada
    MS-Off Ver
    Excel 2003
    Posts
    7

    Re: Absolute address problem

    Thanks a lot. It is exactly what I need.
    Just two more questions:
    Is it possible to have also “copy” of cell formatting – not only value?
    Why my formula with $ sign doesn’t work?
    Thanks in advance
    Amada
    Last edited by shg; 08-20-2010 at 12:29 PM. Reason: deleted spurious quote

  5. #5
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Absolute address problem

    Quote Originally Posted by Amada View Post
    Is it possible to have also “copy” of cell formatting – not only value?
    Realistically - not without VBA.
    Though you can copy and paste the formats beforehand should you modify the formatting on Sheet1 thereafter it won't be reflected automatically on Sheet2.
    (also you can ape some basic formatting with formulae but it's a very limited approach and is unlikely to be viable)

    Quote Originally Posted by Amanda
    Why my formula with $ sign doesn’t work?
    As you are physically relocating a target which is explicitly referenced so the range reference adapts accordingly.

    Both INDEX & INDIRECT in effect use implicit references and as such the references do not adjust in the same way.

  6. #6
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451

    Re: Absolute address problem

    DO

    Would there be unforeseen (by me) problems with this as a solution?

    =INDEX(Sheet!A:A,1)

  7. #7
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Absolute address problem

    Only if Column A is itself cut / deleted etc in it's entirety - assuming you correct the sheet reference

    I assumed the formula would be applied to more than one cell and thus opted for a version that could be used anywhere - in theory at least!)

+ 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