Hi All,
I have the following macro which saves my spreadsheet each time a user click on a cell in column A where there is no data;
I need to tweak the code so that the workbook is again saved after the user has entered data in col A and then navigated away.
Any suggestions?
Thanks,
Jay3
I have the following macro which saves my spreadsheet each time a user click on a cell in column A where there is no data;
Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not Intersect(Target, Columns("A")) Is Nothing Then
If IsEmpty(Target) Then
ThisWorkbook.Save
End If
End If
End Sub
I need to tweak the code so that the workbook is again saved after the user has entered data in col A and then navigated away.
Any suggestions?
Thanks,
Jay3