+ Reply to Thread
Results 1 to 4 of 4

Linking Cells from seperate spreadsheets

Hybrid View

  1. #1
    Conorcasey82@hotmail.com
    Guest

    Linking Cells from seperate spreadsheets

    I have two spreadsheets and both contain stock levels. For efficiency
    and simplicity I would like to be able to link two cells that are in
    different spreadsheets, so that no matter which file was updated the
    other file would automatically update in tandem

    Can anybody help me? Is this possible?

    Regards

    Conor


  2. #2
    Conorcasey82@hotmail.com
    Guest

    Re: Linking Cells from seperate spreadsheets

    Note that the spreadsheets are saved as different .xls files


  3. #3
    George
    Guest

    Re: Linking Cells from seperate spreadsheets

    Conorcasey82@hotmail.com wrote:
    > I have two spreadsheets and both contain stock levels. For efficiency
    > and simplicity I would like to be able to link two cells that are in
    > different spreadsheets, so that no matter which file was updated the
    > other file would automatically update in tandem
    >
    > Can anybody help me? Is this possible?
    >
    > Regards
    >
    > Conor
    >

    Excel can link directly to a cell
    Eg. =[FilenameHere]Sheet1!$A$1
    It's easier just to copy the cell then use paste special > paste link in
    the spreadsheet you wish to use it in. That will give it the correct
    filename sheet etc.

    Linking back poses a problem you basically must set up one as the master
    and the other as a slave (which always copies the data). Otherwise you
    must have some way of determining which sheet has the most current data.

    Here is 1 possible solution but it is messy, and I would recommend you
    work with the master / slave concept.

    Eg.
    A1 = "The data you want to use"
    A2 = Date / Time stamp of when data was entered
    A3 = This is the cell you would use in your calculation
    It is either the DATA from this sheet or the data from the other
    sheet based on which Date/Time is newest

    So Book1 cell A3
    =IF([Book2]Sheet1!$A$2 > A2, [Book2]Sheet1!$A$1, A1)

    And Book2 cell A3
    =IF([Book1]Sheet1!$A$2 > A2, [Book1]Sheet1!$A$1, A1)

    Then you can edit/update cell A1 in either sheet, so long as you update
    the Date/Time stamp also

    George



  4. #4
    Conorcasey82@hotmail.com
    Guest

    Re: Linking Cells from seperate spreadsheets

    Thanks George. Thats been a great help!

    Regards

    Conor


+ 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