Hello Hammer_757,
This change will do what you want...
![]()
'If user did not selcet any employees, remind them and give option to correct or exit If atndCnt < 1 Then Dim varAnswer As String varAnswer = MsgBox("You did not select any attendees. No updates were made. Would you like to select attendees?", _ vbYesNo, "Warning") If varAnswer = vbNo Then 'Exit Sub cbn_Close_Form_Click Else 'go back to the form lstAttendees.SetFocus lstAttendees.TopIndex = 0 Exit Sub End If End If
Bookmarks