Link to home
Start Free TrialLog in
Avatar of Steve_Brady
Steve_BradyFlag for United States of America

asked on

Determining the correct argument for =HYPERLINK() in Excel

Hello,

In Excel (2007), suppose column C, in a worksheet titled "Alpha" contains a large list of numbers.  Furthermore, suppose each of those numbers refers to a specific row in a second worksheet (in the same Workbook) titled "Beta."  

1)  How should the =HYPERLINK() formula be written so that when pasted into column D of worksheet Alpha, it results in links that take you to the first (column A) cell of the row in worksheet Beta defined by the number in column C of worksheet Alpha?  For example:

    In worksheet Alpha, cell C53 = 671 results in cell D53 linking to cell A671 in worksheet Beta.

2)  In addition to the above conditions, suppose column B in worksheet Alpha contains some letter(s) and the formula in column D now links you to the cell in worksheet beta for which the reference is defined by the column B & C values in worksheet Alpha.  For example:

    In worksheet Alpha, cell B126 = Z and cell C126 = 88 results in cell D126 linking to cell Z88 in worksheet Beta.

How would that formula be written?

Does the entire pathway need to be included even though the two worksheets are in the same workbook?  If yes, can you provide an example using following pathway?

    C:\Users\UserName\Documents\UserFolder\UserFile.xlsx

Thanks
Avatar of rspahitz
rspahitz
Flag of United States of America image

1) Cell D53 formula: =INDIRECT("Beta!A" & C53)

2) Cell D126 formula: =INDIRECT("Beta!" & B126 & C126)

Not sure what this has to to with HYPERLINK, which lets you link to an external website like this:

=HYPERLINK("http://dogopoly.com", "Dogopoly - the Game of High Steaks & Bones")
ASKER CERTIFIED SOLUTION
Avatar of Rory Archibald
Rory Archibald
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial