I need the code below to add the condition that if F3 > 0 AND F5 = "Exempt", THEN MsgBox ....
![]()
Private Sub Worksheet_SelectionChange(ByVal Target As Range) Application.Calculate If Sheets("Menu").Range("F3").Value > 0 Then MsgBox "As a salary-exempt employee, you are not entitled to overtime. Please enter 0 into this field." End If End Sub
Bookmarks