PC Review


Reply
Thread Tools Rate Thread

how do I drag and fill hyperlinks?

 
 
coreygreat
Guest
Posts: n/a
 
      19th Apr 2010
I have a master lists of document names that I'm trying to hyperlink sections
to different sheets in the same workbook. I can't seem to figure out how to
drag and fill the hyperlink in a section of the column of the mastersheet,
and sequentially fill down (=sheet2!A5) to (=sheet2!A6)...and so on...linking
to sequential cells in a different worksheet. Right now, I have to 'edit
hyperlink' and change the cell value each time...I have 3000 to do! Thank
you for your help.
 
Reply With Quote
 
 
 
 
Marcelo
Guest
Posts: n/a
 
      19th Apr 2010
on an auxiliar sheet try

=iserror(sheet1!1:1048576)

hth
--
pleae click yes if it was helpfull
regards from Brazil
Marcelo



"coreygreat" escreveu:

> I have a master lists of document names that I'm trying to hyperlink sections
> to different sheets in the same workbook. I can't seem to figure out how to
> drag and fill the hyperlink in a section of the column of the mastersheet,
> and sequentially fill down (=sheet2!A5) to (=sheet2!A6)...and so on...linking
> to sequential cells in a different worksheet. Right now, I have to 'edit
> hyperlink' and change the cell value each time...I have 3000 to do! Thank
> you for your help.

 
Reply With Quote
 
Marcelo
Guest
Posts: n/a
 
      19th Apr 2010
oh god I am sorry I have posted wrong message

thanks


--
pleae click yes if it was helpfull
regards from Brazil
Marcelo



"Marcelo" escreveu:

> on an auxiliar sheet try
>
> =iserror(sheet1!1:1048576)
>
> hth
> --
> pleae click yes if it was helpfull
> regards from Brazil
> Marcelo
>
>
>
> "coreygreat" escreveu:
>
> > I have a master lists of document names that I'm trying to hyperlink sections
> > to different sheets in the same workbook. I can't seem to figure out how to
> > drag and fill the hyperlink in a section of the column of the mastersheet,
> > and sequentially fill down (=sheet2!A5) to (=sheet2!A6)...and so on...linking
> > to sequential cells in a different worksheet. Right now, I have to 'edit
> > hyperlink' and change the cell value each time...I have 3000 to do! Thank
> > you for your help.

 
Reply With Quote
 
Don Guillett
Guest
Posts: n/a
 
      20th Apr 2010
Instead of all of that overhead simply right click sheet tab>view
code>insert this. Now when you double click on any cell with a ! in the
value such as sheet2!a1, you will go there. So enter sheet2!a5 and copy
down. NO hyperlinks.

Private Sub Worksheet_BeforeDoubleClick _
(ByVal Target As Range, Cancel As Boolean)

On Error Resume Next
whereat = InStr(ActiveCell, "!")
ms = Left(ActiveCell, whereat - 1)
mc = Mid(ActiveCell, whereat + 1, 9999)
Application.Goto Sheets(ms).Range(mc)
End Sub


--
Don Guillett
Microsoft MVP Excel
SalesAid Software
(E-Mail Removed)
"coreygreat" <(E-Mail Removed)> wrote in message
news:F05F0633-B9FF-495A-9B9E-(E-Mail Removed)...
>I have a master lists of document names that I'm trying to hyperlink
>sections
> to different sheets in the same workbook. I can't seem to figure out how
> to
> drag and fill the hyperlink in a section of the column of the mastersheet,
> and sequentially fill down (=sheet2!A5) to (=sheet2!A6)...and so
> on...linking
> to sequential cells in a different worksheet. Right now, I have to 'edit
> hyperlink' and change the cell value each time...I have 3000 to do! Thank
> you for your help.


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Fill & Drag to Right !! HELP ! Jez Microsoft Excel Misc 2 17th Sep 2009 03:12 PM
drag and fill options mewmew Microsoft Excel Discussion 1 23rd Apr 2007 12:27 PM
can't drag hyperlinks =?Utf-8?B?Vm95YWdlcjk5?= Windows XP Internet Explorer 3 28th Nov 2004 08:55 PM
Drag and Fill Marc Boken Microsoft Excel Misc 3 18th May 2004 11:11 PM
Drag and Fill with VBA Mr.J Microsoft Excel Worksheet Functions 1 27th Feb 2004 03:41 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 08:50 PM.