A
adamh
I'm sure this is straight forward, but can't seem to find my answer via
numerous searches.
Basically I need to modify my current code (which does work), just to
open it out a bit more. Dates are calculated then added to column I.
Code:
--------------------
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Date = [I3] Then
MsgBox "The highlighted G.A needs to be sent for approval", vbInformation, "Please Note!"
End If
End Sub
--------------------
But rather than (cell) I3, it needs to be the column I. NB. The
highlighting is done with conditional formatting.
And if any body knows how I can delay the msgbox appearing again after
clicking the 'ok' that would also be very useful. At present, as it
finds today’s date it reappears after ever click on the work sheet!
I've only ever touched on VB before.
Thanks in advance
Adam.
numerous searches.
Basically I need to modify my current code (which does work), just to
open it out a bit more. Dates are calculated then added to column I.
Code:
--------------------
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Date = [I3] Then
MsgBox "The highlighted G.A needs to be sent for approval", vbInformation, "Please Note!"
End If
End Sub
--------------------
But rather than (cell) I3, it needs to be the column I. NB. The
highlighting is done with conditional formatting.
And if any body knows how I can delay the msgbox appearing again after
clicking the 'ok' that would also be very useful. At present, as it
finds today’s date it reappears after ever click on the work sheet!
I've only ever touched on VB before.
Thanks in advance
Adam.