Hyperlink proble

DougDR

Board Regular
Joined
Jun 6, 2011
Messages
121
Hi again

WHY wont this work

Hyperlink("[StockListControl.xls]Sheet!"&"C"&Row(Vlookup(##,##,#,0))
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
What value does Row(Vlookup(##,##,#,0)) return at the point where it doesn't work?
 
Upvote 0
Can you post the actual formula you're entering rather than putting hashes in it?

I assume you're not actually entering Row(Vlookup(##,##,#,0))?
 
Upvote 0
<table style="width: 768px; height: 36px;" border="0" cellpadding="0" cellspacing="0"><colgroup><col width="64"></colgroup><tbody><tr height="17"> <td style="height:12.75pt;width:48pt" height="17" width="64">Hyperlink("[StockListControl.xls]SD!"&"C"&Row(Vlookup(E11,SalesPage,2,0)))</td> </tr></tbody></table>

Can you post the actual formula you're entering rather than putting hashes in it?

I assume you're not actually entering Row(Vlookup(##,##,#,0))?
 
Upvote 0
Hmm...

What sort of thing does Vlookup(E11,SalesPage,2,0) return? Is it the row that E11 is found on in SalesPage? I mean, you're looking up the value of E11 in SalesPage and the VLOOKUP returns column 2 of the table, that's got the row number in it and the hyperlink points to column C and the row number where the value in E11 was found in SalesPage. Have I understood the situation correctly? (I may not have expressed it very well!)

If so, then you don't need the ROW bit of the formula:-
Code:
Hyperlink("[StockListControl.xls]SD!"&"C"&Vlookup(E11,SalesPage,2,0))

Give that a try?
 
Upvote 0

Forum statistics

Threads
1,224,514
Messages
6,179,219
Members
452,895
Latest member
BILLING GUY

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top