I have a warning on a sheet:

    Set Target = Me.Range("G1")
     
    If Target.Value < 4 Then
        MsgBox ("SOUND THE ALARMS!!!!!  Please update Bottling Sheet!")
    End If
How do I insert the exitproc or whatever I need for when the reference cell "G1" is >4 or else? G1 is a day count down so the value is either >4, <4, or "Done"

Technically it could even read #VALUE when the template is blank.