My users keep getting the same window "Resolve Conflicts" I know its related to the same row being populated with data i just dont know how to modify the VBA.. i need to except all data and have the entry occupy the next open row..thank you
Private Sub saveclose_Click()
Dim ssheet As Worksheet
Set ssheet = ThisWorkbook.Sheets("sheet1")
nr = ssheet.Cells(Rows.Count, 1).End(-4162).Row + 1
ssheet.Cells(nr, 1) = Me.TBDate
ssheet.Cells(nr, 2) = Me.CmbListItem
ssheet.Cells(nr, 3) = Me.TBUser
ssheet.Cells(nr, 4) = Me.ComboListItem2
ThisWorkbook.Save
ThisWorkbook.Close
Application.Quit
End Sub