Hello,
I'm looking for assistance with my userform. I am utilizing a shared workbook as a department dashboard. The macros are working as intended with the exception of my save button.
Issue:
Save button does in fact save the workbook with:
Private Sub CommandButton5_Click()
ThisWorkbook.Save
MsgBox "Log Entry Saved"
End Sub
However, with the workbook being shared, should another user add an entry, when the save button is clicked the conflicting changes pop-up displays. My idea is to have the user "Accept all other changes" which will then update their instance and allow them to resave their changes. However, when "Accept all other changes" is clicked and the workbook updates (saves) all textboxes on the UserForm are cleared forcing my user to reenter all data which can be pretty lengthy.
Is there a method I can utilize to prevent the save command button from clearing all fields. I have a Clear commandbutton set up to replace that function.
Thank you.
I'm looking for assistance with my userform. I am utilizing a shared workbook as a department dashboard. The macros are working as intended with the exception of my save button.
Issue:
Save button does in fact save the workbook with:
Private Sub CommandButton5_Click()
ThisWorkbook.Save
MsgBox "Log Entry Saved"
End Sub
However, with the workbook being shared, should another user add an entry, when the save button is clicked the conflicting changes pop-up displays. My idea is to have the user "Accept all other changes" which will then update their instance and allow them to resave their changes. However, when "Accept all other changes" is clicked and the workbook updates (saves) all textboxes on the UserForm are cleared forcing my user to reenter all data which can be pretty lengthy.
Is there a method I can utilize to prevent the save command button from clearing all fields. I have a Clear commandbutton set up to replace that function.
Thank you.