+ Reply to Thread
Results 1 to 12 of 12

Use Cell Content to Build Link

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

    Use Cell Content to Build Link

    Hi -

    I am trying to link one cell to another cell in another document on the network. The actually linking of the cells is easy "=http://server/folder/[filename.xls]Sheet1'!$A$1" but the part I can't get is ...

    I want to use another cell's content as part of the url. For example, if cell A1 contained the folder that the file was in then, then I would want to use that value so that I could change the folder in all of the links at one time. For example, if A1=temp, then the link would be "=http://server/temp/[filename.xls]Sheet1'!$A$1". I've tried "=CONCATENATE("=http://server/",A1,"/[filename.xls]Sheet1;!$A$1)" ... it puts together the string correctly, but then the target cell displays the link, not the contents of the remote cell.

    I think if there's an actual function that retrieves the cells contents (instead of just an equals sign) I would be set, but I can't figure that out. Thanks for the help.

  2. #2
    bj
    Guest

    RE: Use Cell Content to Build Link

    try the indirect function
    =indirect("=http://server/"&A1&"/[filename.xls]Sheet1;!$A$1)")

    "flattire00101" wrote:

    >
    > Hi -
    >
    > I am trying to link one cell to another cell in another document on the
    > network. The actually linking of the cells is easy
    > "=http://server/folder/[filename.xls]Sheet1'!$A$1" but the part I can't
    > get is ...
    >
    > I want to use another cell's content as part of the url. For example,
    > if cell A1 contained the folder that the file was in then, then I would
    > want to use that value so that I could change the folder in all of the
    > links at one time. For example, if A1=temp, then the link would be
    > "=http://server/temp/[filename.xls]Sheet1'!$A$1". I've tried
    > "=CONCATENATE("=http://server/",A1,"/[filename.xls]Sheet1;!$A$1)" ...
    > it puts together the string correctly, but then the target cell
    > displays the link, not the contents of the remote cell.
    >
    > I think if there's an actual function that retrieves the cells contents
    > (instead of just an equals sign) I would be set, but I can't figure that
    > out. Thanks for the help.
    >
    >
    > --
    > flattire00101
    > ------------------------------------------------------------------------
    > flattire00101's Profile: http://www.excelforum.com/member.php...o&userid=24409
    > View this thread: http://www.excelforum.com/showthread...hreadid=380091
    >
    >


  3. #3
    bj
    Guest

    RE: Use Cell Content to Build Link

    try the indirect function
    =indirect("=http://server/"&A1&"/[filename.xls]Sheet1;!$A$1)")

    "flattire00101" wrote:

    >
    > Hi -
    >
    > I am trying to link one cell to another cell in another document on the
    > network. The actually linking of the cells is easy
    > "=http://server/folder/[filename.xls]Sheet1'!$A$1" but the part I can't
    > get is ...
    >
    > I want to use another cell's content as part of the url. For example,
    > if cell A1 contained the folder that the file was in then, then I would
    > want to use that value so that I could change the folder in all of the
    > links at one time. For example, if A1=temp, then the link would be
    > "=http://server/temp/[filename.xls]Sheet1'!$A$1". I've tried
    > "=CONCATENATE("=http://server/",A1,"/[filename.xls]Sheet1;!$A$1)" ...
    > it puts together the string correctly, but then the target cell
    > displays the link, not the contents of the remote cell.
    >
    > I think if there's an actual function that retrieves the cells contents
    > (instead of just an equals sign) I would be set, but I can't figure that
    > out. Thanks for the help.
    >
    >
    > --
    > flattire00101
    > ------------------------------------------------------------------------
    > flattire00101's Profile: http://www.excelforum.com/member.php...o&userid=24409
    > View this thread: http://www.excelforum.com/showthread...hreadid=380091
    >
    >


  4. #4
    bj
    Guest

    RE: Use Cell Content to Build Link

    try the indirect function
    =indirect("=http://server/"&A1&"/[filename.xls]Sheet1;!$A$1)")

    "flattire00101" wrote:

    >
    > Hi -
    >
    > I am trying to link one cell to another cell in another document on the
    > network. The actually linking of the cells is easy
    > "=http://server/folder/[filename.xls]Sheet1'!$A$1" but the part I can't
    > get is ...
    >
    > I want to use another cell's content as part of the url. For example,
    > if cell A1 contained the folder that the file was in then, then I would
    > want to use that value so that I could change the folder in all of the
    > links at one time. For example, if A1=temp, then the link would be
    > "=http://server/temp/[filename.xls]Sheet1'!$A$1". I've tried
    > "=CONCATENATE("=http://server/",A1,"/[filename.xls]Sheet1;!$A$1)" ...
    > it puts together the string correctly, but then the target cell
    > displays the link, not the contents of the remote cell.
    >
    > I think if there's an actual function that retrieves the cells contents
    > (instead of just an equals sign) I would be set, but I can't figure that
    > out. Thanks for the help.
    >
    >
    > --
    > flattire00101
    > ------------------------------------------------------------------------
    > flattire00101's Profile: http://www.excelforum.com/member.php...o&userid=24409
    > View this thread: http://www.excelforum.com/showthread...hreadid=380091
    >
    >


  5. #5
    bj
    Guest

    RE: Use Cell Content to Build Link

    try the indirect function
    =indirect("=http://server/"&A1&"/[filename.xls]Sheet1;!$A$1)")

    "flattire00101" wrote:

    >
    > Hi -
    >
    > I am trying to link one cell to another cell in another document on the
    > network. The actually linking of the cells is easy
    > "=http://server/folder/[filename.xls]Sheet1'!$A$1" but the part I can't
    > get is ...
    >
    > I want to use another cell's content as part of the url. For example,
    > if cell A1 contained the folder that the file was in then, then I would
    > want to use that value so that I could change the folder in all of the
    > links at one time. For example, if A1=temp, then the link would be
    > "=http://server/temp/[filename.xls]Sheet1'!$A$1". I've tried
    > "=CONCATENATE("=http://server/",A1,"/[filename.xls]Sheet1;!$A$1)" ...
    > it puts together the string correctly, but then the target cell
    > displays the link, not the contents of the remote cell.
    >
    > I think if there's an actual function that retrieves the cells contents
    > (instead of just an equals sign) I would be set, but I can't figure that
    > out. Thanks for the help.
    >
    >
    > --
    > flattire00101
    > ------------------------------------------------------------------------
    > flattire00101's Profile: http://www.excelforum.com/member.php...o&userid=24409
    > View this thread: http://www.excelforum.com/showthread...hreadid=380091
    >
    >


  6. #6
    bj
    Guest

    RE: Use Cell Content to Build Link

    try the indirect function
    =indirect("=http://server/"&A1&"/[filename.xls]Sheet1;!$A$1)")

    "flattire00101" wrote:

    >
    > Hi -
    >
    > I am trying to link one cell to another cell in another document on the
    > network. The actually linking of the cells is easy
    > "=http://server/folder/[filename.xls]Sheet1'!$A$1" but the part I can't
    > get is ...
    >
    > I want to use another cell's content as part of the url. For example,
    > if cell A1 contained the folder that the file was in then, then I would
    > want to use that value so that I could change the folder in all of the
    > links at one time. For example, if A1=temp, then the link would be
    > "=http://server/temp/[filename.xls]Sheet1'!$A$1". I've tried
    > "=CONCATENATE("=http://server/",A1,"/[filename.xls]Sheet1;!$A$1)" ...
    > it puts together the string correctly, but then the target cell
    > displays the link, not the contents of the remote cell.
    >
    > I think if there's an actual function that retrieves the cells contents
    > (instead of just an equals sign) I would be set, but I can't figure that
    > out. Thanks for the help.
    >
    >
    > --
    > flattire00101
    > ------------------------------------------------------------------------
    > flattire00101's Profile: http://www.excelforum.com/member.php...o&userid=24409
    > View this thread: http://www.excelforum.com/showthread...hreadid=380091
    >
    >


  7. #7
    bj
    Guest

    RE: Use Cell Content to Build Link

    try the indirect function
    =indirect("=http://server/"&A1&"/[filename.xls]Sheet1;!$A$1)")

    "flattire00101" wrote:

    >
    > Hi -
    >
    > I am trying to link one cell to another cell in another document on the
    > network. The actually linking of the cells is easy
    > "=http://server/folder/[filename.xls]Sheet1'!$A$1" but the part I can't
    > get is ...
    >
    > I want to use another cell's content as part of the url. For example,
    > if cell A1 contained the folder that the file was in then, then I would
    > want to use that value so that I could change the folder in all of the
    > links at one time. For example, if A1=temp, then the link would be
    > "=http://server/temp/[filename.xls]Sheet1'!$A$1". I've tried
    > "=CONCATENATE("=http://server/",A1,"/[filename.xls]Sheet1;!$A$1)" ...
    > it puts together the string correctly, but then the target cell
    > displays the link, not the contents of the remote cell.
    >
    > I think if there's an actual function that retrieves the cells contents
    > (instead of just an equals sign) I would be set, but I can't figure that
    > out. Thanks for the help.
    >
    >
    > --
    > flattire00101
    > ------------------------------------------------------------------------
    > flattire00101's Profile: http://www.excelforum.com/member.php...o&userid=24409
    > View this thread: http://www.excelforum.com/showthread...hreadid=380091
    >
    >


  8. #8
    bj
    Guest

    RE: Use Cell Content to Build Link

    try the indirect function
    =indirect("=http://server/"&A1&"/[filename.xls]Sheet1;!$A$1)")

    "flattire00101" wrote:

    >
    > Hi -
    >
    > I am trying to link one cell to another cell in another document on the
    > network. The actually linking of the cells is easy
    > "=http://server/folder/[filename.xls]Sheet1'!$A$1" but the part I can't
    > get is ...
    >
    > I want to use another cell's content as part of the url. For example,
    > if cell A1 contained the folder that the file was in then, then I would
    > want to use that value so that I could change the folder in all of the
    > links at one time. For example, if A1=temp, then the link would be
    > "=http://server/temp/[filename.xls]Sheet1'!$A$1". I've tried
    > "=CONCATENATE("=http://server/",A1,"/[filename.xls]Sheet1;!$A$1)" ...
    > it puts together the string correctly, but then the target cell
    > displays the link, not the contents of the remote cell.
    >
    > I think if there's an actual function that retrieves the cells contents
    > (instead of just an equals sign) I would be set, but I can't figure that
    > out. Thanks for the help.
    >
    >
    > --
    > flattire00101
    > ------------------------------------------------------------------------
    > flattire00101's Profile: http://www.excelforum.com/member.php...o&userid=24409
    > View this thread: http://www.excelforum.com/showthread...hreadid=380091
    >
    >


  9. #9
    bj
    Guest

    RE: Use Cell Content to Build Link

    try the indirect function
    =indirect("=http://server/"&A1&"/[filename.xls]Sheet1;!$A$1)")

    "flattire00101" wrote:

    >
    > Hi -
    >
    > I am trying to link one cell to another cell in another document on the
    > network. The actually linking of the cells is easy
    > "=http://server/folder/[filename.xls]Sheet1'!$A$1" but the part I can't
    > get is ...
    >
    > I want to use another cell's content as part of the url. For example,
    > if cell A1 contained the folder that the file was in then, then I would
    > want to use that value so that I could change the folder in all of the
    > links at one time. For example, if A1=temp, then the link would be
    > "=http://server/temp/[filename.xls]Sheet1'!$A$1". I've tried
    > "=CONCATENATE("=http://server/",A1,"/[filename.xls]Sheet1;!$A$1)" ...
    > it puts together the string correctly, but then the target cell
    > displays the link, not the contents of the remote cell.
    >
    > I think if there's an actual function that retrieves the cells contents
    > (instead of just an equals sign) I would be set, but I can't figure that
    > out. Thanks for the help.
    >
    >
    > --
    > flattire00101
    > ------------------------------------------------------------------------
    > flattire00101's Profile: http://www.excelforum.com/member.php...o&userid=24409
    > View this thread: http://www.excelforum.com/showthread...hreadid=380091
    >
    >


  10. #10
    bj
    Guest

    RE: Use Cell Content to Build Link

    try the indirect function
    =indirect("=http://server/"&A1&"/[filename.xls]Sheet1;!$A$1)")

    "flattire00101" wrote:

    >
    > Hi -
    >
    > I am trying to link one cell to another cell in another document on the
    > network. The actually linking of the cells is easy
    > "=http://server/folder/[filename.xls]Sheet1'!$A$1" but the part I can't
    > get is ...
    >
    > I want to use another cell's content as part of the url. For example,
    > if cell A1 contained the folder that the file was in then, then I would
    > want to use that value so that I could change the folder in all of the
    > links at one time. For example, if A1=temp, then the link would be
    > "=http://server/temp/[filename.xls]Sheet1'!$A$1". I've tried
    > "=CONCATENATE("=http://server/",A1,"/[filename.xls]Sheet1;!$A$1)" ...
    > it puts together the string correctly, but then the target cell
    > displays the link, not the contents of the remote cell.
    >
    > I think if there's an actual function that retrieves the cells contents
    > (instead of just an equals sign) I would be set, but I can't figure that
    > out. Thanks for the help.
    >
    >
    > --
    > flattire00101
    > ------------------------------------------------------------------------
    > flattire00101's Profile: http://www.excelforum.com/member.php...o&userid=24409
    > View this thread: http://www.excelforum.com/showthread...hreadid=380091
    >
    >


  11. #11
    bj
    Guest

    RE: Use Cell Content to Build Link

    try the indirect function
    =indirect("=http://server/"&A1&"/[filename.xls]Sheet1;!$A$1)")

    "flattire00101" wrote:

    >
    > Hi -
    >
    > I am trying to link one cell to another cell in another document on the
    > network. The actually linking of the cells is easy
    > "=http://server/folder/[filename.xls]Sheet1'!$A$1" but the part I can't
    > get is ...
    >
    > I want to use another cell's content as part of the url. For example,
    > if cell A1 contained the folder that the file was in then, then I would
    > want to use that value so that I could change the folder in all of the
    > links at one time. For example, if A1=temp, then the link would be
    > "=http://server/temp/[filename.xls]Sheet1'!$A$1". I've tried
    > "=CONCATENATE("=http://server/",A1,"/[filename.xls]Sheet1;!$A$1)" ...
    > it puts together the string correctly, but then the target cell
    > displays the link, not the contents of the remote cell.
    >
    > I think if there's an actual function that retrieves the cells contents
    > (instead of just an equals sign) I would be set, but I can't figure that
    > out. Thanks for the help.
    >
    >
    > --
    > flattire00101
    > ------------------------------------------------------------------------
    > flattire00101's Profile: http://www.excelforum.com/member.php...o&userid=24409
    > View this thread: http://www.excelforum.com/showthread...hreadid=380091
    >
    >


  12. #12
    bj
    Guest

    RE: Use Cell Content to Build Link

    try the indirect function
    =indirect("=http://server/"&A1&"/[filename.xls]Sheet1;!$A$1)")

    "flattire00101" wrote:

    >
    > Hi -
    >
    > I am trying to link one cell to another cell in another document on the
    > network. The actually linking of the cells is easy
    > "=http://server/folder/[filename.xls]Sheet1'!$A$1" but the part I can't
    > get is ...
    >
    > I want to use another cell's content as part of the url. For example,
    > if cell A1 contained the folder that the file was in then, then I would
    > want to use that value so that I could change the folder in all of the
    > links at one time. For example, if A1=temp, then the link would be
    > "=http://server/temp/[filename.xls]Sheet1'!$A$1". I've tried
    > "=CONCATENATE("=http://server/",A1,"/[filename.xls]Sheet1;!$A$1)" ...
    > it puts together the string correctly, but then the target cell
    > displays the link, not the contents of the remote cell.
    >
    > I think if there's an actual function that retrieves the cells contents
    > (instead of just an equals sign) I would be set, but I can't figure that
    > out. Thanks for the help.
    >
    >
    > --
    > flattire00101
    > ------------------------------------------------------------------------
    > flattire00101's Profile: http://www.excelforum.com/member.php...o&userid=24409
    > View this thread: http://www.excelforum.com/showthread...hreadid=380091
    >
    >


+ 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