Good morning, I have been asked to provide something that will pop-up when any particular sheet is selected - something that will explain the contents & purpose of the data on that sheet.
There are hyperlinks to some of these sheets & I wondered if there was anything that could be piggy-backed to them. It has been suggested that I could use a Workbook_SheetActivate event. I have found this code as a starting point
but, unfortunately, I'm pretty clueless when it come to accessing & using Functions so I'm still stuck. In a way I think that some sort of 'Comment' might be more appropriate so the user could also refer to it once they were on the sheet & had 'dismissed' it after it intitially appeared.
Any thoughts gratefully accepted.
Many thanks,
D€$
There are hyperlinks to some of these sheets & I wondered if there was anything that could be piggy-backed to them. It has been suggested that I could use a Workbook_SheetActivate event. I have found this code as a starting point
Code:
Sub Workbook_SheetActivate(ByVal Sh As Object)
MsgBox Sh.Name
End Sub
Any thoughts gratefully accepted.
Many thanks,
D€$