A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
I've tweaked it, but am not sure it will work
Dim aWB As Excel.Workbook
Dim MacroWS As Excel.Worksheet
Dim myCell As Excel.Range
Set aWB = ThisWorkbook
Set MacroWS = aWB.Worksheets("Macro")
Set myCell = MacroWS.Cells(30, 2)
myCell.Hyperlinks.Add anchor:=myCell, Address:=vhyplink
myCell.Hyperlinks(1).Follow NewWindow:=False, AddHistory:=True
Do Until Workbooks.Count = WBC + 1
DoEvents
Loop
DoEvents
myCell.ClearContents
I'm not sure what you're doing with the Do until Workbooks.count = ... part.