+ Reply to Thread
Results 1 to 21 of 21

list of hyperlinks to a row

  1. #1
    Registered User
    Join Date
    01-05-2020
    Location
    UK
    MS-Off Ver
    2007
    Posts
    19

    list of hyperlinks to a row

    Hi,

    I have something like the following

    xl link.png

    the hyperlinks might go to Z and more (at last count there were at least 50, making it 'AZ1' and more)

    is there a quicker way to create the hyperlinks in column A, than to manually edit each one? eg can the hyperlinks be set to "next column after the last hyperlink, for eg

    3A, hyperlinks to D1
    4A, hyperlinks to "what 3A was linked to, plus 1" -- ie, E1
    5A, hyperlinks to "what 4A was linked to, plus 1" -- ie, F1

    ( or something along those lines )

    or

    is it possible to link one cell (3A) to another cell (D1) with something similar to "ctrl-click 2 cells"? ie, to link just by selecting both cells, with some key combination

    thanx in advance
    Last edited by quartzz; 02-15-2020 at 10:02 PM.

  2. #2
    Forum Expert BMV's Avatar
    Join Date
    01-13-2020
    Location
    St-Petersburg, Russia
    MS-Off Ver
    2013-2016
    Posts
    1,329

    Re: list of hyperlinks to a row

    Please Login or Register  to view this content.

  3. #3
    Registered User
    Join Date
    01-05-2020
    Location
    UK
    MS-Off Ver
    2007
    Posts
    19

    Re: list of hyperlinks to a row

    that seems to link thanks

    can I enter a visible value in the cell that isn't the destination cell?

    also very usefully, it seems that I can insert a column, and insert a row in the link column to add in a new link - that's good
    Last edited by quartzz; 02-16-2020 at 01:14 PM.

  4. #4
    Forum Expert BMV's Avatar
    Join Date
    01-13-2020
    Location
    St-Petersburg, Russia
    MS-Off Ver
    2013-2016
    Posts
    1,329

    Re: list of hyperlinks to a row

    Quote Originally Posted by quartzz View Post
    can I enter a visible value in the cell that isn't the destination cell?
    Yes you can. Change second parameter of hyperlink function.

  5. #5
    Registered User
    Join Date
    01-05-2020
    Location
    UK
    MS-Off Ver
    2007
    Posts
    19

    Re: list of hyperlinks to a row

    which is....which part of the =hyperlink("#"&address(1,row()+1),address(1,row()+1,4)) string? thanx

  6. #6
    Forum Expert BMV's Avatar
    Join Date
    01-13-2020
    Location
    St-Petersburg, Russia
    MS-Off Ver
    2013-2016
    Posts
    1,329

    Re: list of hyperlinks to a row

    This one address(1,row()+1,4) - its friendly name.

  7. #7
    Registered User
    Join Date
    01-05-2020
    Location
    UK
    MS-Off Ver
    2007
    Posts
    19

    Re: list of hyperlinks to a row

    thanks - changed to =HYPERLINK("#"&ADDRESS(1,ROW()+1),test) , and the cell came up with #NAME?

  8. #8
    Forum Expert BMV's Avatar
    Join Date
    01-13-2020
    Location
    St-Petersburg, Russia
    MS-Off Ver
    2013-2016
    Posts
    1,329

    Re: list of hyperlinks to a row

    it must be "test"

  9. #9
    Registered User
    Join Date
    01-05-2020
    Location
    UK
    MS-Off Ver
    2007
    Posts
    19

    Re: list of hyperlinks to a row

    thanks. I can see that will automatically hyperlink to the next column for the next row, I will still have to manually enter in the " [friendly name] " ?

    a next question would be, is there any way, if I have column A already filled in with names, I can put in the =Hyperlink code, and have it use the column A name as the [friendly name] ?

    or as an alternate to the =hyperlink code, is there a way to create a link with a key+mouse click combination

    eg (I'm thinking up a totally top-of-my-head key combo here)

    click column A cell, then "ctrl-h plus mouse click" to destination cell (where ctrl-h is 'create hyperlink')

  10. #10
    Forum Expert BMV's Avatar
    Join Date
    01-13-2020
    Location
    St-Petersburg, Russia
    MS-Off Ver
    2013-2016
    Posts
    1,329

    Re: list of hyperlinks to a row

    Please Login or Register  to view this content.

  11. #11
    Registered User
    Join Date
    01-05-2020
    Location
    UK
    MS-Off Ver
    2007
    Posts
    19

    Re: list of hyperlinks to a row

    hello thanks, that gives me '0' visible in the cell?

    would something like

    =HYPERLINK("#"&ADDRESS(1,ROW()+1),"=B10")

    work (I know it wouldn't because I've just tried it)

    so the hyperlink cell would be A10, and the visible name content of the cell would be B10

    (I'd basically have two columns, one of hyperlinks and one of the names)

  12. #12
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,916

    Re: list of hyperlinks to a row

    Did you try this:

    =HYPERLINK("#"&ADDRESS(1,ROW()+1),B10)
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

  13. #13
    Registered User
    Join Date
    01-05-2020
    Location
    UK
    MS-Off Ver
    2007
    Posts
    19

    Re: list of hyperlinks to a row

    ah. outstandin.

    dragging the square at the lower-right hand corner of the box also seems to increment the [friendly name] link number too, which is good (so I won't have to manually edit each [friendly name] cell ref

    so at the moment I have

    =HYPERLINK("#"&ADDRESS(1,ROW()+1),B10)
    =HYPERLINK("#"&ADDRESS(1,ROW()+1),B11)
    =HYPERLINK("#"&ADDRESS(1,ROW()+1),B12)

    having two columns, the existing one of the names (Bxx) and the hyperlinked ones (Axx) will probably be fine

    if I was being picky..... is it possible to edit the Bxx column list, to basically add

    =HYPERLINK("#"&ADDRESS(1,ROW()+1), ****** )

    to the existing data? (so I would just have a single name/hyperlink list)

    where ***** is the existing text name
    Last edited by quartzz; 02-17-2020 at 01:44 PM.

  14. #14
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,916

    Re: list of hyperlinks to a row

    Sorry - I don't get what you want.

  15. #15
    Registered User
    Join Date
    01-05-2020
    Location
    UK
    MS-Off Ver
    2007
    Posts
    19

    Re: list of hyperlinks to a row

    sure; basically, this is ok

    Attachment 663154

    but if I could "tidy it up" a bit by having just a single column Axx of links, it'd be 'nice'. I know I could hide or narrow the Bxx names column, but I prefer not hiding columns because you forget they are there and have to "unhide" the to edit them etc

    so if I could edit the existing names column to be

    =HYPERLINK("#"&ADDRESS(1,ROW()+1), ****** )

    where ***** is the existing value, it would be nice

    something like

    =HYPERLINK("#"&ADDRESS(1,ROW()+1), "current_value" ) ?

  16. #16
    Forum Expert BMV's Avatar
    Join Date
    01-13-2020
    Location
    St-Petersburg, Russia
    MS-Off Ver
    2013-2016
    Posts
    1,329

    Re: list of hyperlinks to a row

    quartz, Could you attach XLS file with short example where you show what you would like to see.

  17. #17
    Registered User
    Join Date
    01-05-2020
    Location
    UK
    MS-Off Ver
    2007
    Posts
    19

    Re: list of hyperlinks to a row

    hello, attached

    sheet1 has a hidden column, which I'd like to remove

    sheet2 is an example of where I'd like to be (I've manually entered 6 name links)
    sheet2 I've needed to have a blank 'B' column to keep the links valid

    ooook...for some reason it won't let me do the dropdown attachment button?

    xl scrn.png

  18. #18
    Forum Expert BMV's Avatar
    Join Date
    01-13-2020
    Location
    St-Petersburg, Russia
    MS-Off Ver
    2013-2016
    Posts
    1,329

    Re: list of hyperlinks to a row

    quartz, Please follow the instruction "Just before posting, scroll down to GO ADVANCED, click, and then scroll down to MANAGE ATTACHMENTS and click again. Now follow the instructions at the top of that screen." You can read it on the yellow banner on the top of web screen.

  19. #19
    Registered User
    Join Date
    01-05-2020
    Location
    UK
    MS-Off Ver
    2007
    Posts
    19

    Re: list of hyperlinks to a row

    Hello,

    I've just had a think about it actually.

    the 2 sheets I was considering were sheet1 and sheet2 attached

    sheet1 has a hidden column B, which I don't really want
    sheet2 is closer to what I want - just a single column of " named " links

    but to create sheet2 column A hyperlinks out of the existing text in them, I would have to fill out all the values of column A as

    =HYPERLINK("#"&ADDRESS(1,ROW()+1), ***existing text in column A cell*** )

    I don't know if the above is poss

    thinking about it, I've actually just thought of another way of doing it, on sheet3

    I've filled out sheet3's Column A manually for 5 links

    the only problem is, when I drag the cells lower right hand box down, instead of filling column A with

    =HYPERLINK("#"&ADDRESS(1,ROW()+1),C1)
    =HYPERLINK("#"&ADDRESS(1,ROW()+1),D1)
    =HYPERLINK("#"&ADDRESS(1,ROW()+1),E1)
    =HYPERLINK("#"&ADDRESS(1,ROW()+1),F1)

    which links column A to Row 1 (which is what I want)

    it fills them in with

    =HYPERLINK("#"&ADDRESS(1,ROW()+1),C1)
    =HYPERLINK("#"&ADDRESS(1,ROW()+1),C2)
    =HYPERLINK("#"&ADDRESS(1,ROW()+1),C3)
    =HYPERLINK("#"&ADDRESS(1,ROW()+1),C4)

    does that make.....sense ?

    (I think I've attached xls properly?)
    Attached Files Attached Files

  20. #20
    Forum Expert BMV's Avatar
    Join Date
    01-13-2020
    Location
    St-Petersburg, Russia
    MS-Off Ver
    2013-2016
    Posts
    1,329

    Re: list of hyperlinks to a row

    I think you skipped #10.
    Attached Files Attached Files

  21. #21
    Registered User
    Join Date
    01-05-2020
    Location
    UK
    MS-Off Ver
    2007
    Posts
    19

    Re: list of hyperlinks to a row

    ok - (#10 being this thread ) that uses row1 as the source for each text name (as opposed to Column B). I think I can work with that. that would also double check that I only have each name written once, which would make sure the names are synced

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Matching list of hyperlinks to outside files, with list of filenames.
    By mmcbride in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-08-2014, 11:32 AM
  2. Find Hyperlinks, Copy Hyperlinks to alternative sheet, print all hyperlinks
    By matrixpom in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 03-13-2013, 05:13 PM
  3. Excel 2007 : Creating a list of Hyperlinks
    By Nigel999 in forum Excel General
    Replies: 1
    Last Post: 07-28-2009, 08:57 PM
  4. hyperlinks in a list.
    By omalley in forum Excel General
    Replies: 5
    Last Post: 02-26-2007, 09:11 AM
  5. hyperlinks:Drop Down List
    By lsmft in forum Excel General
    Replies: 2
    Last Post: 02-18-2007, 09:08 AM
  6. Help with hyperlinks in pulldown list. Anyone know how?
    By Wayne Knazek in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 06-26-2006, 11:26 AM
  7. [SOLVED] hyperlinks in a dropw down list
    By Wazooli in forum Excel General
    Replies: 1
    Last Post: 01-28-2005, 09:06 PM

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