+ Reply to Thread
Results 1 to 25 of 25

assemble link from different cells and return value

Hybrid View

  1. #1
    Registered User
    Join Date
    06-27-2005
    Posts
    1

    assemble link from different cells and return value

    Hey there, this is my first time on a forum....

    I need to link from a worksheet to another file. Instead of creating this link normally (just by opening the other file and selecting the desired cell), I am trying to assemble the link from a number of different cells in different worksheets...

    for example.

    Cell A1 in worksheet1 = long file path

    something like - file://nuefil08\nuefeb4\Work\Data Entry\31.03.05\EM22.xls

    Cell A1 in worksheet2 = worksheet name and cell reference

    something like - Monthy Totals Line 1!C$159

    The link should be the sum of the 2 cells, however whatever I have tried, excel only returns the text string, not the actual value of the cell from the link...

    I've been trying everything for 2 days and it's starting to do my head in... Any help would be appreciated! Cheers...

  2. #2
    Dave Peterson
    Guest

    Re: assemble link from different cells and return value

    I think you want to use the =indirect() worksheet function.

    But the bad news is that this won't work when the workbook is closed.

    Harlan Grove wrote a UDF called that will retrieve the value from a closed
    workbook.

    You can find the function at Harlan's FTP site:
    ftp://members.aol.com/hrlngrv/

    Look for pull.zip

    tastic96 wrote:
    >
    > Hey there, this is my first time on a forum....
    >
    > I need to link from a worksheet to another file. Instead of creating
    > this link normally (just by opening the other file and selecting the
    > desired cell), I am trying to assemble the link from a number of
    > different cells in different worksheets...
    >
    > for example.
    >
    > Cell A1 in worksheet1 = long file path
    >
    > something like - file://nuefil08\nuefeb4\Work\Data
    > Entry\31.03.05\EM22.xls
    >
    > Cell A1 in worksheet2 = worksheet name and cell reference
    >
    > something like - Monthy Totals Line 1!C$159
    >
    > The link should be the sum of the 2 cells, however whatever I have
    > tried, excel only returns the text string, not the actual value of the
    > cell from the link...
    >
    > I've been trying everything for 2 days and it's starting to do my head
    > in... Any help would be appreciated! Cheers...
    >
    > --
    > tastic96
    > ------------------------------------------------------------------------
    > tastic96's Profile: http://www.excelforum.com/member.php...o&userid=24662
    > View this thread: http://www.excelforum.com/showthread...hreadid=382405


    --

    Dave Peterson

  3. #3
    bj
    Guest

    RE: assemble link from different cells and return value

    slight confusion, when you say "returns the text string", is this a text
    string of the equation, or a concatination of the items in the cells.
    if it is the equation, does it let you leave the cell?
    if so, the cell is probably formated as text and you need to make sure it
    is formated as general. if it is formated for text , check that there is no
    space or hyphen in front of the "="
    if not, it is saying there is an error in the equation. post a copy, and
    see if somone can help you with the format.

    I doubt it is the concatination, but if so, please post the equation.



    "tastic96" wrote:

    >
    > Hey there, this is my first time on a forum....
    >
    > I need to link from a worksheet to another file. Instead of creating
    > this link normally (just by opening the other file and selecting the
    > desired cell), I am trying to assemble the link from a number of
    > different cells in different worksheets...
    >
    > for example.
    >
    > Cell A1 in worksheet1 = long file path
    >
    > something like - file://nuefil08\nuefeb4\Work\Data
    > Entry\31.03.05\EM22.xls
    >
    > Cell A1 in worksheet2 = worksheet name and cell reference
    >
    > something like - Monthy Totals Line 1!C$159
    >
    > The link should be the sum of the 2 cells, however whatever I have
    > tried, excel only returns the text string, not the actual value of the
    > cell from the link...
    >
    > I've been trying everything for 2 days and it's starting to do my head
    > in... Any help would be appreciated! Cheers...
    >
    >
    > --
    > tastic96
    > ------------------------------------------------------------------------
    > tastic96's Profile: http://www.excelforum.com/member.php...o&userid=24662
    > View this thread: http://www.excelforum.com/showthread...hreadid=382405
    >
    >


  4. #4
    Dave Peterson
    Guest

    Re: assemble link from different cells and return value

    I think you want to use the =indirect() worksheet function.

    But the bad news is that this won't work when the workbook is closed.

    Harlan Grove wrote a UDF called that will retrieve the value from a closed
    workbook.

    You can find the function at Harlan's FTP site:
    ftp://members.aol.com/hrlngrv/

    Look for pull.zip

    tastic96 wrote:
    >
    > Hey there, this is my first time on a forum....
    >
    > I need to link from a worksheet to another file. Instead of creating
    > this link normally (just by opening the other file and selecting the
    > desired cell), I am trying to assemble the link from a number of
    > different cells in different worksheets...
    >
    > for example.
    >
    > Cell A1 in worksheet1 = long file path
    >
    > something like - file://nuefil08\nuefeb4\Work\Data
    > Entry\31.03.05\EM22.xls
    >
    > Cell A1 in worksheet2 = worksheet name and cell reference
    >
    > something like - Monthy Totals Line 1!C$159
    >
    > The link should be the sum of the 2 cells, however whatever I have
    > tried, excel only returns the text string, not the actual value of the
    > cell from the link...
    >
    > I've been trying everything for 2 days and it's starting to do my head
    > in... Any help would be appreciated! Cheers...
    >
    > --
    > tastic96
    > ------------------------------------------------------------------------
    > tastic96's Profile: http://www.excelforum.com/member.php...o&userid=24662
    > View this thread: http://www.excelforum.com/showthread...hreadid=382405


    --

    Dave Peterson

  5. #5
    Dave Peterson
    Guest

    Re: assemble link from different cells and return value

    I think you want to use the =indirect() worksheet function.

    But the bad news is that this won't work when the workbook is closed.

    Harlan Grove wrote a UDF called that will retrieve the value from a closed
    workbook.

    You can find the function at Harlan's FTP site:
    ftp://members.aol.com/hrlngrv/

    Look for pull.zip

    tastic96 wrote:
    >
    > Hey there, this is my first time on a forum....
    >
    > I need to link from a worksheet to another file. Instead of creating
    > this link normally (just by opening the other file and selecting the
    > desired cell), I am trying to assemble the link from a number of
    > different cells in different worksheets...
    >
    > for example.
    >
    > Cell A1 in worksheet1 = long file path
    >
    > something like - file://nuefil08\nuefeb4\Work\Data
    > Entry\31.03.05\EM22.xls
    >
    > Cell A1 in worksheet2 = worksheet name and cell reference
    >
    > something like - Monthy Totals Line 1!C$159
    >
    > The link should be the sum of the 2 cells, however whatever I have
    > tried, excel only returns the text string, not the actual value of the
    > cell from the link...
    >
    > I've been trying everything for 2 days and it's starting to do my head
    > in... Any help would be appreciated! Cheers...
    >
    > --
    > tastic96
    > ------------------------------------------------------------------------
    > tastic96's Profile: http://www.excelforum.com/member.php...o&userid=24662
    > View this thread: http://www.excelforum.com/showthread...hreadid=382405


    --

    Dave Peterson

  6. #6
    bj
    Guest

    RE: assemble link from different cells and return value

    slight confusion, when you say "returns the text string", is this a text
    string of the equation, or a concatination of the items in the cells.
    if it is the equation, does it let you leave the cell?
    if so, the cell is probably formated as text and you need to make sure it
    is formated as general. if it is formated for text , check that there is no
    space or hyphen in front of the "="
    if not, it is saying there is an error in the equation. post a copy, and
    see if somone can help you with the format.

    I doubt it is the concatination, but if so, please post the equation.



    "tastic96" wrote:

    >
    > Hey there, this is my first time on a forum....
    >
    > I need to link from a worksheet to another file. Instead of creating
    > this link normally (just by opening the other file and selecting the
    > desired cell), I am trying to assemble the link from a number of
    > different cells in different worksheets...
    >
    > for example.
    >
    > Cell A1 in worksheet1 = long file path
    >
    > something like - file://nuefil08\nuefeb4\Work\Data
    > Entry\31.03.05\EM22.xls
    >
    > Cell A1 in worksheet2 = worksheet name and cell reference
    >
    > something like - Monthy Totals Line 1!C$159
    >
    > The link should be the sum of the 2 cells, however whatever I have
    > tried, excel only returns the text string, not the actual value of the
    > cell from the link...
    >
    > I've been trying everything for 2 days and it's starting to do my head
    > in... Any help would be appreciated! Cheers...
    >
    >
    > --
    > tastic96
    > ------------------------------------------------------------------------
    > tastic96's Profile: http://www.excelforum.com/member.php...o&userid=24662
    > View this thread: http://www.excelforum.com/showthread...hreadid=382405
    >
    >


  7. #7
    bj
    Guest

    RE: assemble link from different cells and return value

    slight confusion, when you say "returns the text string", is this a text
    string of the equation, or a concatination of the items in the cells.
    if it is the equation, does it let you leave the cell?
    if so, the cell is probably formated as text and you need to make sure it
    is formated as general. if it is formated for text , check that there is no
    space or hyphen in front of the "="
    if not, it is saying there is an error in the equation. post a copy, and
    see if somone can help you with the format.

    I doubt it is the concatination, but if so, please post the equation.



    "tastic96" wrote:

    >
    > Hey there, this is my first time on a forum....
    >
    > I need to link from a worksheet to another file. Instead of creating
    > this link normally (just by opening the other file and selecting the
    > desired cell), I am trying to assemble the link from a number of
    > different cells in different worksheets...
    >
    > for example.
    >
    > Cell A1 in worksheet1 = long file path
    >
    > something like - file://nuefil08\nuefeb4\Work\Data
    > Entry\31.03.05\EM22.xls
    >
    > Cell A1 in worksheet2 = worksheet name and cell reference
    >
    > something like - Monthy Totals Line 1!C$159
    >
    > The link should be the sum of the 2 cells, however whatever I have
    > tried, excel only returns the text string, not the actual value of the
    > cell from the link...
    >
    > I've been trying everything for 2 days and it's starting to do my head
    > in... Any help would be appreciated! Cheers...
    >
    >
    > --
    > tastic96
    > ------------------------------------------------------------------------
    > tastic96's Profile: http://www.excelforum.com/member.php...o&userid=24662
    > View this thread: http://www.excelforum.com/showthread...hreadid=382405
    >
    >


  8. #8
    Dave Peterson
    Guest

    Re: assemble link from different cells and return value

    I think you want to use the =indirect() worksheet function.

    But the bad news is that this won't work when the workbook is closed.

    Harlan Grove wrote a UDF called that will retrieve the value from a closed
    workbook.

    You can find the function at Harlan's FTP site:
    ftp://members.aol.com/hrlngrv/

    Look for pull.zip

    tastic96 wrote:
    >
    > Hey there, this is my first time on a forum....
    >
    > I need to link from a worksheet to another file. Instead of creating
    > this link normally (just by opening the other file and selecting the
    > desired cell), I am trying to assemble the link from a number of
    > different cells in different worksheets...
    >
    > for example.
    >
    > Cell A1 in worksheet1 = long file path
    >
    > something like - file://nuefil08\nuefeb4\Work\Data
    > Entry\31.03.05\EM22.xls
    >
    > Cell A1 in worksheet2 = worksheet name and cell reference
    >
    > something like - Monthy Totals Line 1!C$159
    >
    > The link should be the sum of the 2 cells, however whatever I have
    > tried, excel only returns the text string, not the actual value of the
    > cell from the link...
    >
    > I've been trying everything for 2 days and it's starting to do my head
    > in... Any help would be appreciated! Cheers...
    >
    > --
    > tastic96
    > ------------------------------------------------------------------------
    > tastic96's Profile: http://www.excelforum.com/member.php...o&userid=24662
    > View this thread: http://www.excelforum.com/showthread...hreadid=382405


    --

    Dave Peterson

  9. #9
    bj
    Guest

    RE: assemble link from different cells and return value

    slight confusion, when you say "returns the text string", is this a text
    string of the equation, or a concatination of the items in the cells.
    if it is the equation, does it let you leave the cell?
    if so, the cell is probably formated as text and you need to make sure it
    is formated as general. if it is formated for text , check that there is no
    space or hyphen in front of the "="
    if not, it is saying there is an error in the equation. post a copy, and
    see if somone can help you with the format.

    I doubt it is the concatination, but if so, please post the equation.



    "tastic96" wrote:

    >
    > Hey there, this is my first time on a forum....
    >
    > I need to link from a worksheet to another file. Instead of creating
    > this link normally (just by opening the other file and selecting the
    > desired cell), I am trying to assemble the link from a number of
    > different cells in different worksheets...
    >
    > for example.
    >
    > Cell A1 in worksheet1 = long file path
    >
    > something like - file://nuefil08\nuefeb4\Work\Data
    > Entry\31.03.05\EM22.xls
    >
    > Cell A1 in worksheet2 = worksheet name and cell reference
    >
    > something like - Monthy Totals Line 1!C$159
    >
    > The link should be the sum of the 2 cells, however whatever I have
    > tried, excel only returns the text string, not the actual value of the
    > cell from the link...
    >
    > I've been trying everything for 2 days and it's starting to do my head
    > in... Any help would be appreciated! Cheers...
    >
    >
    > --
    > tastic96
    > ------------------------------------------------------------------------
    > tastic96's Profile: http://www.excelforum.com/member.php...o&userid=24662
    > View this thread: http://www.excelforum.com/showthread...hreadid=382405
    >
    >


  10. #10
    Dave Peterson
    Guest

    Re: assemble link from different cells and return value

    I think you want to use the =indirect() worksheet function.

    But the bad news is that this won't work when the workbook is closed.

    Harlan Grove wrote a UDF called that will retrieve the value from a closed
    workbook.

    You can find the function at Harlan's FTP site:
    ftp://members.aol.com/hrlngrv/

    Look for pull.zip

    tastic96 wrote:
    >
    > Hey there, this is my first time on a forum....
    >
    > I need to link from a worksheet to another file. Instead of creating
    > this link normally (just by opening the other file and selecting the
    > desired cell), I am trying to assemble the link from a number of
    > different cells in different worksheets...
    >
    > for example.
    >
    > Cell A1 in worksheet1 = long file path
    >
    > something like - file://nuefil08\nuefeb4\Work\Data
    > Entry\31.03.05\EM22.xls
    >
    > Cell A1 in worksheet2 = worksheet name and cell reference
    >
    > something like - Monthy Totals Line 1!C$159
    >
    > The link should be the sum of the 2 cells, however whatever I have
    > tried, excel only returns the text string, not the actual value of the
    > cell from the link...
    >
    > I've been trying everything for 2 days and it's starting to do my head
    > in... Any help would be appreciated! Cheers...
    >
    > --
    > tastic96
    > ------------------------------------------------------------------------
    > tastic96's Profile: http://www.excelforum.com/member.php...o&userid=24662
    > View this thread: http://www.excelforum.com/showthread...hreadid=382405


    --

    Dave Peterson

  11. #11
    Dave Peterson
    Guest

    Re: assemble link from different cells and return value

    I think you want to use the =indirect() worksheet function.

    But the bad news is that this won't work when the workbook is closed.

    Harlan Grove wrote a UDF called that will retrieve the value from a closed
    workbook.

    You can find the function at Harlan's FTP site:
    ftp://members.aol.com/hrlngrv/

    Look for pull.zip

    tastic96 wrote:
    >
    > Hey there, this is my first time on a forum....
    >
    > I need to link from a worksheet to another file. Instead of creating
    > this link normally (just by opening the other file and selecting the
    > desired cell), I am trying to assemble the link from a number of
    > different cells in different worksheets...
    >
    > for example.
    >
    > Cell A1 in worksheet1 = long file path
    >
    > something like - file://nuefil08\nuefeb4\Work\Data
    > Entry\31.03.05\EM22.xls
    >
    > Cell A1 in worksheet2 = worksheet name and cell reference
    >
    > something like - Monthy Totals Line 1!C$159
    >
    > The link should be the sum of the 2 cells, however whatever I have
    > tried, excel only returns the text string, not the actual value of the
    > cell from the link...
    >
    > I've been trying everything for 2 days and it's starting to do my head
    > in... Any help would be appreciated! Cheers...
    >
    > --
    > tastic96
    > ------------------------------------------------------------------------
    > tastic96's Profile: http://www.excelforum.com/member.php...o&userid=24662
    > View this thread: http://www.excelforum.com/showthread...hreadid=382405


    --

    Dave Peterson

  12. #12
    bj
    Guest

    RE: assemble link from different cells and return value

    slight confusion, when you say "returns the text string", is this a text
    string of the equation, or a concatination of the items in the cells.
    if it is the equation, does it let you leave the cell?
    if so, the cell is probably formated as text and you need to make sure it
    is formated as general. if it is formated for text , check that there is no
    space or hyphen in front of the "="
    if not, it is saying there is an error in the equation. post a copy, and
    see if somone can help you with the format.

    I doubt it is the concatination, but if so, please post the equation.



    "tastic96" wrote:

    >
    > Hey there, this is my first time on a forum....
    >
    > I need to link from a worksheet to another file. Instead of creating
    > this link normally (just by opening the other file and selecting the
    > desired cell), I am trying to assemble the link from a number of
    > different cells in different worksheets...
    >
    > for example.
    >
    > Cell A1 in worksheet1 = long file path
    >
    > something like - file://nuefil08\nuefeb4\Work\Data
    > Entry\31.03.05\EM22.xls
    >
    > Cell A1 in worksheet2 = worksheet name and cell reference
    >
    > something like - Monthy Totals Line 1!C$159
    >
    > The link should be the sum of the 2 cells, however whatever I have
    > tried, excel only returns the text string, not the actual value of the
    > cell from the link...
    >
    > I've been trying everything for 2 days and it's starting to do my head
    > in... Any help would be appreciated! Cheers...
    >
    >
    > --
    > tastic96
    > ------------------------------------------------------------------------
    > tastic96's Profile: http://www.excelforum.com/member.php...o&userid=24662
    > View this thread: http://www.excelforum.com/showthread...hreadid=382405
    >
    >


  13. #13
    bj
    Guest

    RE: assemble link from different cells and return value

    slight confusion, when you say "returns the text string", is this a text
    string of the equation, or a concatination of the items in the cells.
    if it is the equation, does it let you leave the cell?
    if so, the cell is probably formated as text and you need to make sure it
    is formated as general. if it is formated for text , check that there is no
    space or hyphen in front of the "="
    if not, it is saying there is an error in the equation. post a copy, and
    see if somone can help you with the format.

    I doubt it is the concatination, but if so, please post the equation.



    "tastic96" wrote:

    >
    > Hey there, this is my first time on a forum....
    >
    > I need to link from a worksheet to another file. Instead of creating
    > this link normally (just by opening the other file and selecting the
    > desired cell), I am trying to assemble the link from a number of
    > different cells in different worksheets...
    >
    > for example.
    >
    > Cell A1 in worksheet1 = long file path
    >
    > something like - file://nuefil08\nuefeb4\Work\Data
    > Entry\31.03.05\EM22.xls
    >
    > Cell A1 in worksheet2 = worksheet name and cell reference
    >
    > something like - Monthy Totals Line 1!C$159
    >
    > The link should be the sum of the 2 cells, however whatever I have
    > tried, excel only returns the text string, not the actual value of the
    > cell from the link...
    >
    > I've been trying everything for 2 days and it's starting to do my head
    > in... Any help would be appreciated! Cheers...
    >
    >
    > --
    > tastic96
    > ------------------------------------------------------------------------
    > tastic96's Profile: http://www.excelforum.com/member.php...o&userid=24662
    > View this thread: http://www.excelforum.com/showthread...hreadid=382405
    >
    >


  14. #14
    Dave Peterson
    Guest

    Re: assemble link from different cells and return value

    I think you want to use the =indirect() worksheet function.

    But the bad news is that this won't work when the workbook is closed.

    Harlan Grove wrote a UDF called that will retrieve the value from a closed
    workbook.

    You can find the function at Harlan's FTP site:
    ftp://members.aol.com/hrlngrv/

    Look for pull.zip

    tastic96 wrote:
    >
    > Hey there, this is my first time on a forum....
    >
    > I need to link from a worksheet to another file. Instead of creating
    > this link normally (just by opening the other file and selecting the
    > desired cell), I am trying to assemble the link from a number of
    > different cells in different worksheets...
    >
    > for example.
    >
    > Cell A1 in worksheet1 = long file path
    >
    > something like - file://nuefil08\nuefeb4\Work\Data
    > Entry\31.03.05\EM22.xls
    >
    > Cell A1 in worksheet2 = worksheet name and cell reference
    >
    > something like - Monthy Totals Line 1!C$159
    >
    > The link should be the sum of the 2 cells, however whatever I have
    > tried, excel only returns the text string, not the actual value of the
    > cell from the link...
    >
    > I've been trying everything for 2 days and it's starting to do my head
    > in... Any help would be appreciated! Cheers...
    >
    > --
    > tastic96
    > ------------------------------------------------------------------------
    > tastic96's Profile: http://www.excelforum.com/member.php...o&userid=24662
    > View this thread: http://www.excelforum.com/showthread...hreadid=382405


    --

    Dave Peterson

  15. #15
    Dave Peterson
    Guest

    Re: assemble link from different cells and return value

    I think you want to use the =indirect() worksheet function.

    But the bad news is that this won't work when the workbook is closed.

    Harlan Grove wrote a UDF called that will retrieve the value from a closed
    workbook.

    You can find the function at Harlan's FTP site:
    ftp://members.aol.com/hrlngrv/

    Look for pull.zip

    tastic96 wrote:
    >
    > Hey there, this is my first time on a forum....
    >
    > I need to link from a worksheet to another file. Instead of creating
    > this link normally (just by opening the other file and selecting the
    > desired cell), I am trying to assemble the link from a number of
    > different cells in different worksheets...
    >
    > for example.
    >
    > Cell A1 in worksheet1 = long file path
    >
    > something like - file://nuefil08\nuefeb4\Work\Data
    > Entry\31.03.05\EM22.xls
    >
    > Cell A1 in worksheet2 = worksheet name and cell reference
    >
    > something like - Monthy Totals Line 1!C$159
    >
    > The link should be the sum of the 2 cells, however whatever I have
    > tried, excel only returns the text string, not the actual value of the
    > cell from the link...
    >
    > I've been trying everything for 2 days and it's starting to do my head
    > in... Any help would be appreciated! Cheers...
    >
    > --
    > tastic96
    > ------------------------------------------------------------------------
    > tastic96's Profile: http://www.excelforum.com/member.php...o&userid=24662
    > View this thread: http://www.excelforum.com/showthread...hreadid=382405


    --

    Dave Peterson

  16. #16
    bj
    Guest

    RE: assemble link from different cells and return value

    slight confusion, when you say "returns the text string", is this a text
    string of the equation, or a concatination of the items in the cells.
    if it is the equation, does it let you leave the cell?
    if so, the cell is probably formated as text and you need to make sure it
    is formated as general. if it is formated for text , check that there is no
    space or hyphen in front of the "="
    if not, it is saying there is an error in the equation. post a copy, and
    see if somone can help you with the format.

    I doubt it is the concatination, but if so, please post the equation.



    "tastic96" wrote:

    >
    > Hey there, this is my first time on a forum....
    >
    > I need to link from a worksheet to another file. Instead of creating
    > this link normally (just by opening the other file and selecting the
    > desired cell), I am trying to assemble the link from a number of
    > different cells in different worksheets...
    >
    > for example.
    >
    > Cell A1 in worksheet1 = long file path
    >
    > something like - file://nuefil08\nuefeb4\Work\Data
    > Entry\31.03.05\EM22.xls
    >
    > Cell A1 in worksheet2 = worksheet name and cell reference
    >
    > something like - Monthy Totals Line 1!C$159
    >
    > The link should be the sum of the 2 cells, however whatever I have
    > tried, excel only returns the text string, not the actual value of the
    > cell from the link...
    >
    > I've been trying everything for 2 days and it's starting to do my head
    > in... Any help would be appreciated! Cheers...
    >
    >
    > --
    > tastic96
    > ------------------------------------------------------------------------
    > tastic96's Profile: http://www.excelforum.com/member.php...o&userid=24662
    > View this thread: http://www.excelforum.com/showthread...hreadid=382405
    >
    >


  17. #17
    bj
    Guest

    RE: assemble link from different cells and return value

    slight confusion, when you say "returns the text string", is this a text
    string of the equation, or a concatination of the items in the cells.
    if it is the equation, does it let you leave the cell?
    if so, the cell is probably formated as text and you need to make sure it
    is formated as general. if it is formated for text , check that there is no
    space or hyphen in front of the "="
    if not, it is saying there is an error in the equation. post a copy, and
    see if somone can help you with the format.

    I doubt it is the concatination, but if so, please post the equation.



    "tastic96" wrote:

    >
    > Hey there, this is my first time on a forum....
    >
    > I need to link from a worksheet to another file. Instead of creating
    > this link normally (just by opening the other file and selecting the
    > desired cell), I am trying to assemble the link from a number of
    > different cells in different worksheets...
    >
    > for example.
    >
    > Cell A1 in worksheet1 = long file path
    >
    > something like - file://nuefil08\nuefeb4\Work\Data
    > Entry\31.03.05\EM22.xls
    >
    > Cell A1 in worksheet2 = worksheet name and cell reference
    >
    > something like - Monthy Totals Line 1!C$159
    >
    > The link should be the sum of the 2 cells, however whatever I have
    > tried, excel only returns the text string, not the actual value of the
    > cell from the link...
    >
    > I've been trying everything for 2 days and it's starting to do my head
    > in... Any help would be appreciated! Cheers...
    >
    >
    > --
    > tastic96
    > ------------------------------------------------------------------------
    > tastic96's Profile: http://www.excelforum.com/member.php...o&userid=24662
    > View this thread: http://www.excelforum.com/showthread...hreadid=382405
    >
    >


  18. #18
    Dave Peterson
    Guest

    Re: assemble link from different cells and return value

    I think you want to use the =indirect() worksheet function.

    But the bad news is that this won't work when the workbook is closed.

    Harlan Grove wrote a UDF called that will retrieve the value from a closed
    workbook.

    You can find the function at Harlan's FTP site:
    ftp://members.aol.com/hrlngrv/

    Look for pull.zip

    tastic96 wrote:
    >
    > Hey there, this is my first time on a forum....
    >
    > I need to link from a worksheet to another file. Instead of creating
    > this link normally (just by opening the other file and selecting the
    > desired cell), I am trying to assemble the link from a number of
    > different cells in different worksheets...
    >
    > for example.
    >
    > Cell A1 in worksheet1 = long file path
    >
    > something like - file://nuefil08\nuefeb4\Work\Data
    > Entry\31.03.05\EM22.xls
    >
    > Cell A1 in worksheet2 = worksheet name and cell reference
    >
    > something like - Monthy Totals Line 1!C$159
    >
    > The link should be the sum of the 2 cells, however whatever I have
    > tried, excel only returns the text string, not the actual value of the
    > cell from the link...
    >
    > I've been trying everything for 2 days and it's starting to do my head
    > in... Any help would be appreciated! Cheers...
    >
    > --
    > tastic96
    > ------------------------------------------------------------------------
    > tastic96's Profile: http://www.excelforum.com/member.php...o&userid=24662
    > View this thread: http://www.excelforum.com/showthread...hreadid=382405


    --

    Dave Peterson

  19. #19
    bj
    Guest

    RE: assemble link from different cells and return value

    slight confusion, when you say "returns the text string", is this a text
    string of the equation, or a concatination of the items in the cells.
    if it is the equation, does it let you leave the cell?
    if so, the cell is probably formated as text and you need to make sure it
    is formated as general. if it is formated for text , check that there is no
    space or hyphen in front of the "="
    if not, it is saying there is an error in the equation. post a copy, and
    see if somone can help you with the format.

    I doubt it is the concatination, but if so, please post the equation.



    "tastic96" wrote:

    >
    > Hey there, this is my first time on a forum....
    >
    > I need to link from a worksheet to another file. Instead of creating
    > this link normally (just by opening the other file and selecting the
    > desired cell), I am trying to assemble the link from a number of
    > different cells in different worksheets...
    >
    > for example.
    >
    > Cell A1 in worksheet1 = long file path
    >
    > something like - file://nuefil08\nuefeb4\Work\Data
    > Entry\31.03.05\EM22.xls
    >
    > Cell A1 in worksheet2 = worksheet name and cell reference
    >
    > something like - Monthy Totals Line 1!C$159
    >
    > The link should be the sum of the 2 cells, however whatever I have
    > tried, excel only returns the text string, not the actual value of the
    > cell from the link...
    >
    > I've been trying everything for 2 days and it's starting to do my head
    > in... Any help would be appreciated! Cheers...
    >
    >
    > --
    > tastic96
    > ------------------------------------------------------------------------
    > tastic96's Profile: http://www.excelforum.com/member.php...o&userid=24662
    > View this thread: http://www.excelforum.com/showthread...hreadid=382405
    >
    >


  20. #20
    Dave Peterson
    Guest

    Re: assemble link from different cells and return value

    I think you want to use the =indirect() worksheet function.

    But the bad news is that this won't work when the workbook is closed.

    Harlan Grove wrote a UDF called that will retrieve the value from a closed
    workbook.

    You can find the function at Harlan's FTP site:
    ftp://members.aol.com/hrlngrv/

    Look for pull.zip

    tastic96 wrote:
    >
    > Hey there, this is my first time on a forum....
    >
    > I need to link from a worksheet to another file. Instead of creating
    > this link normally (just by opening the other file and selecting the
    > desired cell), I am trying to assemble the link from a number of
    > different cells in different worksheets...
    >
    > for example.
    >
    > Cell A1 in worksheet1 = long file path
    >
    > something like - file://nuefil08\nuefeb4\Work\Data
    > Entry\31.03.05\EM22.xls
    >
    > Cell A1 in worksheet2 = worksheet name and cell reference
    >
    > something like - Monthy Totals Line 1!C$159
    >
    > The link should be the sum of the 2 cells, however whatever I have
    > tried, excel only returns the text string, not the actual value of the
    > cell from the link...
    >
    > I've been trying everything for 2 days and it's starting to do my head
    > in... Any help would be appreciated! Cheers...
    >
    > --
    > tastic96
    > ------------------------------------------------------------------------
    > tastic96's Profile: http://www.excelforum.com/member.php...o&userid=24662
    > View this thread: http://www.excelforum.com/showthread...hreadid=382405


    --

    Dave Peterson

  21. #21
    Dave Peterson
    Guest

    Re: assemble link from different cells and return value

    I think you want to use the =indirect() worksheet function.

    But the bad news is that this won't work when the workbook is closed.

    Harlan Grove wrote a UDF called that will retrieve the value from a closed
    workbook.

    You can find the function at Harlan's FTP site:
    ftp://members.aol.com/hrlngrv/

    Look for pull.zip

    tastic96 wrote:
    >
    > Hey there, this is my first time on a forum....
    >
    > I need to link from a worksheet to another file. Instead of creating
    > this link normally (just by opening the other file and selecting the
    > desired cell), I am trying to assemble the link from a number of
    > different cells in different worksheets...
    >
    > for example.
    >
    > Cell A1 in worksheet1 = long file path
    >
    > something like - file://nuefil08\nuefeb4\Work\Data
    > Entry\31.03.05\EM22.xls
    >
    > Cell A1 in worksheet2 = worksheet name and cell reference
    >
    > something like - Monthy Totals Line 1!C$159
    >
    > The link should be the sum of the 2 cells, however whatever I have
    > tried, excel only returns the text string, not the actual value of the
    > cell from the link...
    >
    > I've been trying everything for 2 days and it's starting to do my head
    > in... Any help would be appreciated! Cheers...
    >
    > --
    > tastic96
    > ------------------------------------------------------------------------
    > tastic96's Profile: http://www.excelforum.com/member.php...o&userid=24662
    > View this thread: http://www.excelforum.com/showthread...hreadid=382405


    --

    Dave Peterson

  22. #22
    Dave Peterson
    Guest

    Re: assemble link from different cells and return value

    I think you want to use the =indirect() worksheet function.

    But the bad news is that this won't work when the workbook is closed.

    Harlan Grove wrote a UDF called that will retrieve the value from a closed
    workbook.

    You can find the function at Harlan's FTP site:
    ftp://members.aol.com/hrlngrv/

    Look for pull.zip

    tastic96 wrote:
    >
    > Hey there, this is my first time on a forum....
    >
    > I need to link from a worksheet to another file. Instead of creating
    > this link normally (just by opening the other file and selecting the
    > desired cell), I am trying to assemble the link from a number of
    > different cells in different worksheets...
    >
    > for example.
    >
    > Cell A1 in worksheet1 = long file path
    >
    > something like - file://nuefil08\nuefeb4\Work\Data
    > Entry\31.03.05\EM22.xls
    >
    > Cell A1 in worksheet2 = worksheet name and cell reference
    >
    > something like - Monthy Totals Line 1!C$159
    >
    > The link should be the sum of the 2 cells, however whatever I have
    > tried, excel only returns the text string, not the actual value of the
    > cell from the link...
    >
    > I've been trying everything for 2 days and it's starting to do my head
    > in... Any help would be appreciated! Cheers...
    >
    > --
    > tastic96
    > ------------------------------------------------------------------------
    > tastic96's Profile: http://www.excelforum.com/member.php...o&userid=24662
    > View this thread: http://www.excelforum.com/showthread...hreadid=382405


    --

    Dave Peterson

  23. #23
    bj
    Guest

    RE: assemble link from different cells and return value

    slight confusion, when you say "returns the text string", is this a text
    string of the equation, or a concatination of the items in the cells.
    if it is the equation, does it let you leave the cell?
    if so, the cell is probably formated as text and you need to make sure it
    is formated as general. if it is formated for text , check that there is no
    space or hyphen in front of the "="
    if not, it is saying there is an error in the equation. post a copy, and
    see if somone can help you with the format.

    I doubt it is the concatination, but if so, please post the equation.



    "tastic96" wrote:

    >
    > Hey there, this is my first time on a forum....
    >
    > I need to link from a worksheet to another file. Instead of creating
    > this link normally (just by opening the other file and selecting the
    > desired cell), I am trying to assemble the link from a number of
    > different cells in different worksheets...
    >
    > for example.
    >
    > Cell A1 in worksheet1 = long file path
    >
    > something like - file://nuefil08\nuefeb4\Work\Data
    > Entry\31.03.05\EM22.xls
    >
    > Cell A1 in worksheet2 = worksheet name and cell reference
    >
    > something like - Monthy Totals Line 1!C$159
    >
    > The link should be the sum of the 2 cells, however whatever I have
    > tried, excel only returns the text string, not the actual value of the
    > cell from the link...
    >
    > I've been trying everything for 2 days and it's starting to do my head
    > in... Any help would be appreciated! Cheers...
    >
    >
    > --
    > tastic96
    > ------------------------------------------------------------------------
    > tastic96's Profile: http://www.excelforum.com/member.php...o&userid=24662
    > View this thread: http://www.excelforum.com/showthread...hreadid=382405
    >
    >


  24. #24
    bj
    Guest

    RE: assemble link from different cells and return value

    slight confusion, when you say "returns the text string", is this a text
    string of the equation, or a concatination of the items in the cells.
    if it is the equation, does it let you leave the cell?
    if so, the cell is probably formated as text and you need to make sure it
    is formated as general. if it is formated for text , check that there is no
    space or hyphen in front of the "="
    if not, it is saying there is an error in the equation. post a copy, and
    see if somone can help you with the format.

    I doubt it is the concatination, but if so, please post the equation.



    "tastic96" wrote:

    >
    > Hey there, this is my first time on a forum....
    >
    > I need to link from a worksheet to another file. Instead of creating
    > this link normally (just by opening the other file and selecting the
    > desired cell), I am trying to assemble the link from a number of
    > different cells in different worksheets...
    >
    > for example.
    >
    > Cell A1 in worksheet1 = long file path
    >
    > something like - file://nuefil08\nuefeb4\Work\Data
    > Entry\31.03.05\EM22.xls
    >
    > Cell A1 in worksheet2 = worksheet name and cell reference
    >
    > something like - Monthy Totals Line 1!C$159
    >
    > The link should be the sum of the 2 cells, however whatever I have
    > tried, excel only returns the text string, not the actual value of the
    > cell from the link...
    >
    > I've been trying everything for 2 days and it's starting to do my head
    > in... Any help would be appreciated! Cheers...
    >
    >
    > --
    > tastic96
    > ------------------------------------------------------------------------
    > tastic96's Profile: http://www.excelforum.com/member.php...o&userid=24662
    > View this thread: http://www.excelforum.com/showthread...hreadid=382405
    >
    >


  25. #25
    bj
    Guest

    RE: assemble link from different cells and return value

    slight confusion, when you say "returns the text string", is this a text
    string of the equation, or a concatination of the items in the cells.
    if it is the equation, does it let you leave the cell?
    if so, the cell is probably formated as text and you need to make sure it
    is formated as general. if it is formated for text , check that there is no
    space or hyphen in front of the "="
    if not, it is saying there is an error in the equation. post a copy, and
    see if somone can help you with the format.

    I doubt it is the concatination, but if so, please post the equation.



    "tastic96" wrote:

    >
    > Hey there, this is my first time on a forum....
    >
    > I need to link from a worksheet to another file. Instead of creating
    > this link normally (just by opening the other file and selecting the
    > desired cell), I am trying to assemble the link from a number of
    > different cells in different worksheets...
    >
    > for example.
    >
    > Cell A1 in worksheet1 = long file path
    >
    > something like - file://nuefil08\nuefeb4\Work\Data
    > Entry\31.03.05\EM22.xls
    >
    > Cell A1 in worksheet2 = worksheet name and cell reference
    >
    > something like - Monthy Totals Line 1!C$159
    >
    > The link should be the sum of the 2 cells, however whatever I have
    > tried, excel only returns the text string, not the actual value of the
    > cell from the link...
    >
    > I've been trying everything for 2 days and it's starting to do my head
    > in... Any help would be appreciated! Cheers...
    >
    >
    > --
    > tastic96
    > ------------------------------------------------------------------------
    > tastic96's Profile: http://www.excelforum.com/member.php...o&userid=24662
    > View this thread: http://www.excelforum.com/showthread...hreadid=382405
    >
    >


+ 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