+ Reply to Thread
Results 1 to 3 of 3

Creating a master worksheet

Hybrid View

  1. #1
    lrobin65
    Guest

    Creating a master worksheet

    I have several worksheets that I would like to combine the data from onto one
    worksheet. Is this possible and if so, how do I make it work?

  2. #2
    Gilbert De Ceulaer
    Guest

    Re: Creating a master worksheet

    if you want the value of a1 of SHEET1 of WORKBOOK1 then put
    ='[WORKBOOK1.xls]SHEET1'!$A$1)

    you could make this very easy to change (the names of the workbook, or the
    name of the worksheet)
    by putting "WORKBOOK1" in a1 of your destination-sheet
    and "SHEET1" in a2 in your destination-sheet
    then the formula would be =INDIRECT("'"&A1&"'!"&A2)

    if you want an error-trap (in case A1 or A2 does contains wrong data)
    the formula becomes =IF(ISERROR(INDIRECT("'"&A1&"'!"&A2)); "something is
    wrong !"; INDIRECT("'"&A1&"'!"&A2))

    does this help you ?
    GDC

    "lrobin65" <lrobin65@discussions.microsoft.com> wrote in message
    news:D01D5981-08E8-4C42-8981-8B2682FCCCA8@microsoft.com...
    >I have several worksheets that I would like to combine the data from onto
    >one
    > worksheet. Is this possible and if so, how do I make it work?




  3. #3
    lrobin65
    Guest

    Re: Creating a master worksheet

    This works, but is there a quicker way to put the data onto a master sheet?
    I have to change the formula at each cell and then do the update value after
    each cell. I have over 15 worksheets in the workbook that go from A2 to V2
    with sign up information.
    Thanks for your help!

    "Gilbert De Ceulaer" wrote:

    > if you want the value of a1 of SHEET1 of WORKBOOK1 then put
    > ='[WORKBOOK1.xls]SHEET1'!$A$1)
    >
    > you could make this very easy to change (the names of the workbook, or the
    > name of the worksheet)
    > by putting "WORKBOOK1" in a1 of your destination-sheet
    > and "SHEET1" in a2 in your destination-sheet
    > then the formula would be =INDIRECT("'"&A1&"'!"&A2)
    >
    > if you want an error-trap (in case A1 or A2 does contains wrong data)
    > the formula becomes =IF(ISERROR(INDIRECT("'"&A1&"'!"&A2)); "something is
    > wrong !"; INDIRECT("'"&A1&"'!"&A2))
    >
    > does this help you ?
    > GDC
    >
    > "lrobin65" <lrobin65@discussions.microsoft.com> wrote in message
    > news:D01D5981-08E8-4C42-8981-8B2682FCCCA8@microsoft.com...
    > >I have several worksheets that I would like to combine the data from onto
    > >one
    > > worksheet. Is this possible and if so, how do I make it work?

    >
    >
    >


+ 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