Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Opening Hyperlinks

Can someone please tell me if there is a keyboard shortcut I can use
to open multiple hyperlinks in a spreadsheet (Column B, row 2-2535).

Alternatively, I know I can write a macro with a keyboard shortcut -
if anyone knows how to write it and could post, I'd really appreciate
it.

Thanks

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,058
Default Opening Hyperlinks

Assign a shortcut key to the following:

Sub hyper_gone_wild()
Dim r As Range
Set r = Range("B2:B2535")
For Each rr In r
If rr.Hyperlinks.Count 0 Then
For Each hl In rr.Hyperlinks
ActiveWorkbook.FollowHyperlink Address:=hl.Address
Next
End If
Next
End Sub
--
Gary''s Student - gsnu2007


"Nicki" wrote:

Can someone please tell me if there is a keyboard shortcut I can use
to open multiple hyperlinks in a spreadsheet (Column B, row 2-2535).

Alternatively, I know I can write a macro with a keyboard shortcut -
if anyone knows how to write it and could post, I'd really appreciate
it.

Thanks


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
OPENING HYPERLINKS IN EXCEL Santi[_2_] Excel Discussion (Misc queries) 2 August 5th 08 04:17 PM
Help opening pictures from hyperlinks BC From KY Excel Discussion (Misc queries) 0 February 11th 08 02:19 AM
Hyperlinks opening in a new window. Dan H Setting up and Configuration of Excel 1 April 13th 07 12:13 AM
Hyperlinks opening an Excel file at a particular tab PatrickW Excel Discussion (Misc queries) 1 August 23rd 05 06:30 PM
Opening hyperlinks with macro?? Frazer Excel Discussion (Misc queries) 12 August 17th 05 04:21 PM


All times are GMT +1. The time now is 04:06 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"