Bom dia!!!
 
  
 tente isso..........
Sub TenteAdaptar()
Link_AleVBA = Range(Mid(Split(Range("A1").Formula, ",")(0), 12))
ActiveWorkbook.FollowHyperlink Address:=Link_AleVBA, NewWindow:=True
End Sub
Talvez outra forma....
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
  
  Const MyRange = "B10:B40"
  Const Lnk = "http://www.yahoo.com"
  
  If Intersect(Range(MyRange), Target) Is Nothing Then Exit Sub
  Cancel = True
  ThisWorkbook.FollowHyperlink Lnk & Sheets("Sheet2").Range("B6"), NewWindow:=True
  
End Sub
Att
                                                                                                	Existem mil maneiras de preparar Neston. Invente a sua!
http://www.youtube.com/ExpressoExcel
                                                 
	                                         
                    
                    	
                            Postado : 30/05/2013 8:30 am