CraigRackham
New Member
- Joined
- Jan 6, 2017
- Messages
- 16
Hi,
I have this code to produce a message box when a cell is selected:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not Intersect(Target, Range("K26")) Is Nothing Then _
MsgBox "INC000011108068 " & "- Pending Issue", vbInformation, "Joseph Waheed"
End Sub
How can i add more message boxes to other cells so that each selected cell will present a different message box?
Thanks,
Craig
I have this code to produce a message box when a cell is selected:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not Intersect(Target, Range("K26")) Is Nothing Then _
MsgBox "INC000011108068 " & "- Pending Issue", vbInformation, "Joseph Waheed"
End Sub
How can i add more message boxes to other cells so that each selected cell will present a different message box?
Thanks,
Craig