AFAIK, this can't be done as a message box has to return a yes or no constant to excel - you might want to look at creating a userform that looks like a message box - then I think you can put hyperlinks on forms (failing that you can use a button)
HTH
Geoff
now?"
Ans = MsgBox(msg, vbQuestion + vbYesNoCancel)
Select Case Ans
Case vbYes
ActiveSheet.Hyperlinks(1).Follow NewWindow:=False, AddHistory:=True
Application.WindowState = xlNormal
GoTo alldone
Case vbNo
Cancel = True
GoTo alldone
Case vbCancel
Cancel = True
GoTo alldone
End Select
alldone:
End Sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.