I have a checkbox in sheet1 when checked, a Msgbox will appear. Is it possible to change the colour of the msgbox to red instead of the default colour?
Private Sub CheckBox1_Click()
If Sheet1.CheckBox1.Value = True Then
MsgBox "Red Alert!", vbCritical
End If
End Sub
Thanks
Start Free Trial