• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

easy hyperlink question...

konijay

New Member
hello all,


column A contains employee numbers

column X contains employee's salary amount

I need hyperlink to employee's salary when employee number is clicked(same row)

I am getting circular reference error when I do this...


=hyperlink(X1,A1)


thanks
 
You'll need to include both the workbook and sheet name, and it needs to be in quotes (as you want the text string, not the contents of the cell X1).

=HYPERLINK("[Your book.xls]'My Sheet'!X1",A1)
 
My issue is the A1 part, not "[Your book.xls]'My Sheet'!X1"...


Isn't circular reference error coming from A1 since it cannot look at itself?


I want to be able to click the employee number(whatever the number that's already in A1) and it jumps to salary(X1).
 
Yes, as you found out, you can't do that. =)


Assuming employee numbers are in col A, you would put the formula in another column (maybe insert a new col B?) and then hide col A.
 
Back
Top