Private Sub btnSave_Click()
Dim res As VbMsgBoxResult
Dim Rng As Range
Dim c As Range
res = MsgBox("Are you sure you want to delete employee" & vbLf & vbLf & Me.cboEmp.Column(0) & vbLf & "Employee number " & Me.cboEmp.Column(1) & "?", vbYesNo, "Deletion Check")
If res = vbNo Then Exit Sub
Set Rng = Sheet1.Range(Sheet1.Range("B8"), Sheet1.Range("B" & Rows.Count).End(xlUp))
For Each c In Rng
If c.Text = Me.cboEmp.Text And c.Offset(, 1).Text = Me.txtEmpNo Then
c.Resize(, 3).ClearContents
c.Offset(, 8).Resize(, 108).ClearContents
End If
Next c
Call SortAddBlankRows
ActiveWorkbook.Save
Unload Me
End Sub