I want to get the hyperlink from an Excel Sheet. My Excel Sheet has 100 rows
and the column N has the hyperlinks.. I am trying to extract all the
hyperlink in a loop .. using the following method...
RowCounter = 2
While RowCounter <= Row Count
Ranges = "N"&RowCounter
Address = xlWorkSheet.Range(Ranges).Hyperlinks(1).Address
Wend
But this returns me an erro rsubscript out of Range..
If I use this formula on Cell A1 it works.. if I use it on anyother Cells
like N2, N3 or any other combination it throws the error.
Is there any other change I need to do in the Method to get it to work.
Tam - 05 Nov 2007 21:43 GMT
Sorry, this question should have gone in office my mistake.
> I want to get the hyperlink from an Excel Sheet. My Excel Sheet has 100 rows
> and the column N has the hyperlinks.. I am trying to extract all the
[quoted text clipped - 12 lines]
>
> Is there any other change I need to do in the Method to get it to work.