Hyperlink-IF formula

kal5001

New member
Joined
Feb 12, 2014
Messages
4
Reaction score
0
Points
0
Hello

Trying to create a hyperlink in B6, if C6="January" go to B74 (all in same sheet "Inventory Counts")

=HYPERLINK(IF(C6="January",B74,""),"GO TO")

This is not working for me...

Please help.

Thanks.
 
Try:

=HYPERLINK("#"&IF(C6="January","B74",""),"GO TO")
 
With hyperlink you usually require a path to where the cell to link to is... the # allows you to say that the cell is in the same workbook and in this case also the same sheet.
If it was in another sheet of the same workbook, then it would look something like this:


=HYPERLINK("#'Sheet B'!"&IF(C6="January","B74",""),"GO TO")
 
Once again, thanks for all your help and actually teaching me!

Cheers.
 
Back
Top