+ Reply to Thread
Results 1 to 22 of 22

Read data from anohter XLS file

  1. #1
    Peo Sjoblom
    Guest

    RE: Read data from anohter XLS file

    Your question is not clear to me? What exactly do you want to do? You can
    just copy over data, or you can use formulas to extract data from another
    workbook..



    Regards,

    Peo Sjoblom

    "John Whitehead via OfficeKB.com" wrote:

    > Does anyone know how to read data from another Excel XLS file and copy it
    > into a new Excel XLS file?
    >
    > Thanks,
    > John
    >


  2. #2
    John Whitehead via OfficeKB.com
    Guest

    Read data from anohter XLS file

    Does anyone know how to read data from another Excel XLS file and copy it
    into a new Excel XLS file?

    Thanks,
    John

  3. #3
    John Whitehead via OfficeKB.com
    Guest

    RE: Read data from anohter XLS file

    Peo Sjoblom,
    What I want is this:
    File 1 will read all the data from File 2 and place the data into
    File 1.
    File 1 will sort the data.
    Thanks,
    John

  4. #4
    Harlan Grove
    Guest

    Re: Read data from anohter XLS file

    John Whitehead via OfficeKB.com wrote...
    >Does anyone know how to read data from another Excel XLS file and copy

    it
    >into a new Excel XLS file?


    Opening both files, copying from one and pasting into the other isn't
    an option for you?


  5. #5
    John Whitehead via OfficeKB.com
    Guest

    Re: Read data from anohter XLS file

    I would like the Excel spreadsheet to do this. The person I'm trying to
    help needs to take classes on Excel.
    Thanks,
    John

    --
    Message posted via http://www.officekb.com

  6. #6
    Harlan Grove
    Guest

    Re: Read data from anohter XLS file

    John Whitehead via OfficeKB.com wrote...
    >I would like the Excel spreadsheet to do this. The person I'm trying

    to
    >help needs to take classes on Excel.


    You could pull in data with formulas like

    =IF(ISBLANK('X:\Y\[Z.xls]SomeSheet'!A1),"",'X:\Y\[Z.xls]SomeSheet'!A1)

    Pulling data by formula or copy/paste are your only alternatives.


  7. #7
    Justin
    Guest

    Re: Read data from anohter XLS file

    Biff suggested I check out responses on this as there may be a VBA routine
    that does this. I want to take the formula below and in place of the file
    name have a variable value that looks up the data on another workbook while
    it is closed.
    example:
    A1 = June.xls
    B1 = =IF(ISBLANK('X:\Y\[A1]SomeSheet'!A1),"",'X:\Y\[A1]SomeSheet'!A1)

    the value in A1 can potentially change depending on other factors within the
    active sheet. But the value in B1 is always based off of the file name in
    A1. I would prefer to do this in a formula or array if at all possible
    instead of setting a VBA routine to enter this formula everytime the page is
    opened.


    "Harlan Grove" wrote:

    > John Whitehead via OfficeKB.com wrote...
    > >I would like the Excel spreadsheet to do this. The person I'm trying

    > to
    > >help needs to take classes on Excel.

    >
    > You could pull in data with formulas like
    >
    > =IF(ISBLANK('X:\Y\[Z.xls]SomeSheet'!A1),"",'X:\Y\[Z.xls]SomeSheet'!A1)
    >
    > Pulling data by formula or copy/paste are your only alternatives.
    >
    >


  8. #8
    Justin
    Guest

    Re: Read data from anohter XLS file

    Biff suggested I check out responses on this as there may be a VBA routine
    that does this. I want to take the formula below and in place of the file
    name have a variable value that looks up the data on another workbook while
    it is closed.
    example:
    A1 = June.xls
    B1 = =IF(ISBLANK('X:\Y\[A1]SomeSheet'!A1),"",'X:\Y\[A1]SomeSheet'!A1)

    the value in A1 can potentially change depending on other factors within the
    active sheet. But the value in B1 is always based off of the file name in
    A1. I would prefer to do this in a formula or array if at all possible
    instead of setting a VBA routine to enter this formula everytime the page is
    opened.


    "Harlan Grove" wrote:

    > John Whitehead via OfficeKB.com wrote...
    > >I would like the Excel spreadsheet to do this. The person I'm trying

    > to
    > >help needs to take classes on Excel.

    >
    > You could pull in data with formulas like
    >
    > =IF(ISBLANK('X:\Y\[Z.xls]SomeSheet'!A1),"",'X:\Y\[Z.xls]SomeSheet'!A1)
    >
    > Pulling data by formula or copy/paste are your only alternatives.
    >
    >


  9. #9
    Justin
    Guest

    Re: Read data from anohter XLS file

    Biff suggested I check out responses on this as there may be a VBA routine
    that does this. I want to take the formula below and in place of the file
    name have a variable value that looks up the data on another workbook while
    it is closed.
    example:
    A1 = June.xls
    B1 = =IF(ISBLANK('X:\Y\[A1]SomeSheet'!A1),"",'X:\Y\[A1]SomeSheet'!A1)

    the value in A1 can potentially change depending on other factors within the
    active sheet. But the value in B1 is always based off of the file name in
    A1. I would prefer to do this in a formula or array if at all possible
    instead of setting a VBA routine to enter this formula everytime the page is
    opened.


    "Harlan Grove" wrote:

    > John Whitehead via OfficeKB.com wrote...
    > >I would like the Excel spreadsheet to do this. The person I'm trying

    > to
    > >help needs to take classes on Excel.

    >
    > You could pull in data with formulas like
    >
    > =IF(ISBLANK('X:\Y\[Z.xls]SomeSheet'!A1),"",'X:\Y\[Z.xls]SomeSheet'!A1)
    >
    > Pulling data by formula or copy/paste are your only alternatives.
    >
    >


  10. #10
    Justin
    Guest

    Re: Read data from anohter XLS file

    Biff suggested I check out responses on this as there may be a VBA routine
    that does this. I want to take the formula below and in place of the file
    name have a variable value that looks up the data on another workbook while
    it is closed.
    example:
    A1 = June.xls
    B1 = =IF(ISBLANK('X:\Y\[A1]SomeSheet'!A1),"",'X:\Y\[A1]SomeSheet'!A1)

    the value in A1 can potentially change depending on other factors within the
    active sheet. But the value in B1 is always based off of the file name in
    A1. I would prefer to do this in a formula or array if at all possible
    instead of setting a VBA routine to enter this formula everytime the page is
    opened.


    "Harlan Grove" wrote:

    > John Whitehead via OfficeKB.com wrote...
    > >I would like the Excel spreadsheet to do this. The person I'm trying

    > to
    > >help needs to take classes on Excel.

    >
    > You could pull in data with formulas like
    >
    > =IF(ISBLANK('X:\Y\[Z.xls]SomeSheet'!A1),"",'X:\Y\[Z.xls]SomeSheet'!A1)
    >
    > Pulling data by formula or copy/paste are your only alternatives.
    >
    >


  11. #11
    Justin
    Guest

    Re: Read data from anohter XLS file

    Biff suggested I check out responses on this as there may be a VBA routine
    that does this. I want to take the formula below and in place of the file
    name have a variable value that looks up the data on another workbook while
    it is closed.
    example:
    A1 = June.xls
    B1 = =IF(ISBLANK('X:\Y\[A1]SomeSheet'!A1),"",'X:\Y\[A1]SomeSheet'!A1)

    the value in A1 can potentially change depending on other factors within the
    active sheet. But the value in B1 is always based off of the file name in
    A1. I would prefer to do this in a formula or array if at all possible
    instead of setting a VBA routine to enter this formula everytime the page is
    opened.


    "Harlan Grove" wrote:

    > John Whitehead via OfficeKB.com wrote...
    > >I would like the Excel spreadsheet to do this. The person I'm trying

    > to
    > >help needs to take classes on Excel.

    >
    > You could pull in data with formulas like
    >
    > =IF(ISBLANK('X:\Y\[Z.xls]SomeSheet'!A1),"",'X:\Y\[Z.xls]SomeSheet'!A1)
    >
    > Pulling data by formula or copy/paste are your only alternatives.
    >
    >


  12. #12
    Justin
    Guest

    Re: Read data from anohter XLS file

    Biff suggested I check out responses on this as there may be a VBA routine
    that does this. I want to take the formula below and in place of the file
    name have a variable value that looks up the data on another workbook while
    it is closed.
    example:
    A1 = June.xls
    B1 = =IF(ISBLANK('X:\Y\[A1]SomeSheet'!A1),"",'X:\Y\[A1]SomeSheet'!A1)

    the value in A1 can potentially change depending on other factors within the
    active sheet. But the value in B1 is always based off of the file name in
    A1. I would prefer to do this in a formula or array if at all possible
    instead of setting a VBA routine to enter this formula everytime the page is
    opened.


    "Harlan Grove" wrote:

    > John Whitehead via OfficeKB.com wrote...
    > >I would like the Excel spreadsheet to do this. The person I'm trying

    > to
    > >help needs to take classes on Excel.

    >
    > You could pull in data with formulas like
    >
    > =IF(ISBLANK('X:\Y\[Z.xls]SomeSheet'!A1),"",'X:\Y\[Z.xls]SomeSheet'!A1)
    >
    > Pulling data by formula or copy/paste are your only alternatives.
    >
    >


  13. #13
    Justin
    Guest

    Re: Read data from anohter XLS file

    Biff suggested I check out responses on this as there may be a VBA routine
    that does this. I want to take the formula below and in place of the file
    name have a variable value that looks up the data on another workbook while
    it is closed.
    example:
    A1 = June.xls
    B1 = =IF(ISBLANK('X:\Y\[A1]SomeSheet'!A1),"",'X:\Y\[A1]SomeSheet'!A1)

    the value in A1 can potentially change depending on other factors within the
    active sheet. But the value in B1 is always based off of the file name in
    A1. I would prefer to do this in a formula or array if at all possible
    instead of setting a VBA routine to enter this formula everytime the page is
    opened.


    "Harlan Grove" wrote:

    > John Whitehead via OfficeKB.com wrote...
    > >I would like the Excel spreadsheet to do this. The person I'm trying

    > to
    > >help needs to take classes on Excel.

    >
    > You could pull in data with formulas like
    >
    > =IF(ISBLANK('X:\Y\[Z.xls]SomeSheet'!A1),"",'X:\Y\[Z.xls]SomeSheet'!A1)
    >
    > Pulling data by formula or copy/paste are your only alternatives.
    >
    >


  14. #14
    Justin
    Guest

    Re: Read data from anohter XLS file

    Biff suggested I check out responses on this as there may be a VBA routine
    that does this. I want to take the formula below and in place of the file
    name have a variable value that looks up the data on another workbook while
    it is closed.
    example:
    A1 = June.xls
    B1 = =IF(ISBLANK('X:\Y\[A1]SomeSheet'!A1),"",'X:\Y\[A1]SomeSheet'!A1)

    the value in A1 can potentially change depending on other factors within the
    active sheet. But the value in B1 is always based off of the file name in
    A1. I would prefer to do this in a formula or array if at all possible
    instead of setting a VBA routine to enter this formula everytime the page is
    opened.


    "Harlan Grove" wrote:

    > John Whitehead via OfficeKB.com wrote...
    > >I would like the Excel spreadsheet to do this. The person I'm trying

    > to
    > >help needs to take classes on Excel.

    >
    > You could pull in data with formulas like
    >
    > =IF(ISBLANK('X:\Y\[Z.xls]SomeSheet'!A1),"",'X:\Y\[Z.xls]SomeSheet'!A1)
    >
    > Pulling data by formula or copy/paste are your only alternatives.
    >
    >


  15. #15
    Justin
    Guest

    Re: Read data from anohter XLS file

    Biff suggested I check out responses on this as there may be a VBA routine
    that does this. I want to take the formula below and in place of the file
    name have a variable value that looks up the data on another workbook while
    it is closed.
    example:
    A1 = June.xls
    B1 = =IF(ISBLANK('X:\Y\[A1]SomeSheet'!A1),"",'X:\Y\[A1]SomeSheet'!A1)

    the value in A1 can potentially change depending on other factors within the
    active sheet. But the value in B1 is always based off of the file name in
    A1. I would prefer to do this in a formula or array if at all possible
    instead of setting a VBA routine to enter this formula everytime the page is
    opened.


    "Harlan Grove" wrote:

    > John Whitehead via OfficeKB.com wrote...
    > >I would like the Excel spreadsheet to do this. The person I'm trying

    > to
    > >help needs to take classes on Excel.

    >
    > You could pull in data with formulas like
    >
    > =IF(ISBLANK('X:\Y\[Z.xls]SomeSheet'!A1),"",'X:\Y\[Z.xls]SomeSheet'!A1)
    >
    > Pulling data by formula or copy/paste are your only alternatives.
    >
    >


  16. #16
    Justin
    Guest

    Re: Read data from anohter XLS file

    Biff suggested I check out responses on this as there may be a VBA routine
    that does this. I want to take the formula below and in place of the file
    name have a variable value that looks up the data on another workbook while
    it is closed.
    example:
    A1 = June.xls
    B1 = =IF(ISBLANK('X:\Y\[A1]SomeSheet'!A1),"",'X:\Y\[A1]SomeSheet'!A1)

    the value in A1 can potentially change depending on other factors within the
    active sheet. But the value in B1 is always based off of the file name in
    A1. I would prefer to do this in a formula or array if at all possible
    instead of setting a VBA routine to enter this formula everytime the page is
    opened.


    "Harlan Grove" wrote:

    > John Whitehead via OfficeKB.com wrote...
    > >I would like the Excel spreadsheet to do this. The person I'm trying

    > to
    > >help needs to take classes on Excel.

    >
    > You could pull in data with formulas like
    >
    > =IF(ISBLANK('X:\Y\[Z.xls]SomeSheet'!A1),"",'X:\Y\[Z.xls]SomeSheet'!A1)
    >
    > Pulling data by formula or copy/paste are your only alternatives.
    >
    >


  17. #17
    Justin
    Guest

    Re: Read data from anohter XLS file

    Biff suggested I check out responses on this as there may be a VBA routine
    that does this. I want to take the formula below and in place of the file
    name have a variable value that looks up the data on another workbook while
    it is closed.
    example:
    A1 = June.xls
    B1 = =IF(ISBLANK('X:\Y\[A1]SomeSheet'!A1),"",'X:\Y\[A1]SomeSheet'!A1)

    the value in A1 can potentially change depending on other factors within the
    active sheet. But the value in B1 is always based off of the file name in
    A1. I would prefer to do this in a formula or array if at all possible
    instead of setting a VBA routine to enter this formula everytime the page is
    opened.


    "Harlan Grove" wrote:

    > John Whitehead via OfficeKB.com wrote...
    > >I would like the Excel spreadsheet to do this. The person I'm trying

    > to
    > >help needs to take classes on Excel.

    >
    > You could pull in data with formulas like
    >
    > =IF(ISBLANK('X:\Y\[Z.xls]SomeSheet'!A1),"",'X:\Y\[Z.xls]SomeSheet'!A1)
    >
    > Pulling data by formula or copy/paste are your only alternatives.
    >
    >


  18. #18
    Justin
    Guest

    Re: Read data from anohter XLS file

    Biff suggested I check out responses on this as there may be a VBA routine
    that does this. I want to take the formula below and in place of the file
    name have a variable value that looks up the data on another workbook while
    it is closed.
    example:
    A1 = June.xls
    B1 = =IF(ISBLANK('X:\Y\[A1]SomeSheet'!A1),"",'X:\Y\[A1]SomeSheet'!A1)

    the value in A1 can potentially change depending on other factors within the
    active sheet. But the value in B1 is always based off of the file name in
    A1. I would prefer to do this in a formula or array if at all possible
    instead of setting a VBA routine to enter this formula everytime the page is
    opened.


    "Harlan Grove" wrote:

    > John Whitehead via OfficeKB.com wrote...
    > >I would like the Excel spreadsheet to do this. The person I'm trying

    > to
    > >help needs to take classes on Excel.

    >
    > You could pull in data with formulas like
    >
    > =IF(ISBLANK('X:\Y\[Z.xls]SomeSheet'!A1),"",'X:\Y\[Z.xls]SomeSheet'!A1)
    >
    > Pulling data by formula or copy/paste are your only alternatives.
    >
    >


  19. #19
    Justin
    Guest

    Re: Read data from anohter XLS file

    Biff suggested I check out responses on this as there may be a VBA routine
    that does this. I want to take the formula below and in place of the file
    name have a variable value that looks up the data on another workbook while
    it is closed.
    example:
    A1 = June.xls
    B1 = =IF(ISBLANK('X:\Y\[A1]SomeSheet'!A1),"",'X:\Y\[A1]SomeSheet'!A1)

    the value in A1 can potentially change depending on other factors within the
    active sheet. But the value in B1 is always based off of the file name in
    A1. I would prefer to do this in a formula or array if at all possible
    instead of setting a VBA routine to enter this formula everytime the page is
    opened.


    "Harlan Grove" wrote:

    > John Whitehead via OfficeKB.com wrote...
    > >I would like the Excel spreadsheet to do this. The person I'm trying

    > to
    > >help needs to take classes on Excel.

    >
    > You could pull in data with formulas like
    >
    > =IF(ISBLANK('X:\Y\[Z.xls]SomeSheet'!A1),"",'X:\Y\[Z.xls]SomeSheet'!A1)
    >
    > Pulling data by formula or copy/paste are your only alternatives.
    >
    >


  20. #20
    Justin
    Guest

    Re: Read data from anohter XLS file

    Biff suggested I check out responses on this as there may be a VBA routine
    that does this. I want to take the formula below and in place of the file
    name have a variable value that looks up the data on another workbook while
    it is closed.
    example:
    A1 = June.xls
    B1 = =IF(ISBLANK('X:\Y\[A1]SomeSheet'!A1),"",'X:\Y\[A1]SomeSheet'!A1)

    the value in A1 can potentially change depending on other factors within the
    active sheet. But the value in B1 is always based off of the file name in
    A1. I would prefer to do this in a formula or array if at all possible
    instead of setting a VBA routine to enter this formula everytime the page is
    opened.


    "Harlan Grove" wrote:

    > John Whitehead via OfficeKB.com wrote...
    > >I would like the Excel spreadsheet to do this. The person I'm trying

    > to
    > >help needs to take classes on Excel.

    >
    > You could pull in data with formulas like
    >
    > =IF(ISBLANK('X:\Y\[Z.xls]SomeSheet'!A1),"",'X:\Y\[Z.xls]SomeSheet'!A1)
    >
    > Pulling data by formula or copy/paste are your only alternatives.
    >
    >


  21. #21
    Justin
    Guest

    Re: Read data from anohter XLS file

    Biff suggested I check out responses on this as there may be a VBA routine
    that does this. I want to take the formula below and in place of the file
    name have a variable value that looks up the data on another workbook while
    it is closed.
    example:
    A1 = June.xls
    B1 = =IF(ISBLANK('X:\Y\[A1]SomeSheet'!A1),"",'X:\Y\[A1]SomeSheet'!A1)

    the value in A1 can potentially change depending on other factors within the
    active sheet. But the value in B1 is always based off of the file name in
    A1. I would prefer to do this in a formula or array if at all possible
    instead of setting a VBA routine to enter this formula everytime the page is
    opened.


    "Harlan Grove" wrote:

    > John Whitehead via OfficeKB.com wrote...
    > >I would like the Excel spreadsheet to do this. The person I'm trying

    > to
    > >help needs to take classes on Excel.

    >
    > You could pull in data with formulas like
    >
    > =IF(ISBLANK('X:\Y\[Z.xls]SomeSheet'!A1),"",'X:\Y\[Z.xls]SomeSheet'!A1)
    >
    > Pulling data by formula or copy/paste are your only alternatives.
    >
    >


  22. #22
    Justin
    Guest

    Re: Read data from anohter XLS file

    Biff suggested I check out responses on this as there may be a VBA routine
    that does this. I want to take the formula below and in place of the file
    name have a variable value that looks up the data on another workbook while
    it is closed.
    example:
    A1 = June.xls
    B1 = =IF(ISBLANK('X:\Y\[A1]SomeSheet'!A1),"",'X:\Y\[A1]SomeSheet'!A1)

    the value in A1 can potentially change depending on other factors within the
    active sheet. But the value in B1 is always based off of the file name in
    A1. I would prefer to do this in a formula or array if at all possible
    instead of setting a VBA routine to enter this formula everytime the page is
    opened.


    "Harlan Grove" wrote:

    > John Whitehead via OfficeKB.com wrote...
    > >I would like the Excel spreadsheet to do this. The person I'm trying

    > to
    > >help needs to take classes on Excel.

    >
    > You could pull in data with formulas like
    >
    > =IF(ISBLANK('X:\Y\[Z.xls]SomeSheet'!A1),"",'X:\Y\[Z.xls]SomeSheet'!A1)
    >
    > Pulling data by formula or copy/paste are your only alternatives.
    >
    >


+ 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