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?
Bookmarks