Ok, so I got it to require Field B if there is data in Field A using if statements.* But now, if I do not have any information in either field, the close button becomes inactive.* Here is what my code is looking like.
*
Private Sub cmdClose_Click()
*** If Me.CloseDt >= 0 Then
******* If IsNull(Me.Comments) Then
*********** MsgBox "You must leave a comment."
*********** Me.Comments.SetFocus
******* Else
*********** DoCmd.Close
******* End If
*** End If
End Sub