BankingExcel
New Member
- Joined
- Feb 10, 2022
- Messages
- 2
- Office Version
- 2013
HI,
I want a message box to automatically appear conditional on a checklist being completed. I am currently using
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Range("B3").Value = 0 Then
MsgBox "Checklist Completed- When XXXXX"
End If
End Sub
B3 contains a countif, i.e. when it reaches 0 all items in checklist have been ticked off. This is when I want a message box to appear. Currently I have to go up and click into B3 to get the message and then when I click any other random cell it also pops up. I want the message box to come up once automatically once B3 reaches 0. IS that possible?
Many thanks in advance.
I want a message box to automatically appear conditional on a checklist being completed. I am currently using
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Range("B3").Value = 0 Then
MsgBox "Checklist Completed- When XXXXX"
End If
End Sub
B3 contains a countif, i.e. when it reaches 0 all items in checklist have been ticked off. This is when I want a message box to appear. Currently I have to go up and click into B3 to get the message and then when I click any other random cell it also pops up. I want the message box to come up once automatically once B3 reaches 0. IS that possible?
Many thanks in advance.