Save everytime a cell is edited

RSnap3232

New Member
Joined
Nov 20, 2020
Messages
43
Office Version
  1. 2016
  2. 2013
Platform
  1. Windows
does anyone know a way to get excel to save every time a cell in column C is edited, I have a spreadsheet where multiple users can be working on at the same time and want to ensure they don't use the same reference number, already have it so it updates every ten minutes in the advance options under share workbook but looking for a more robust method
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
Hi RSnap
Please make sure the below code is pasted into the Sheet module
For example double click on Sheet1(Sheet1) in the project window

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
            If Target.Column = 3 Then ThisWorkbook.Save

End Sub
 
Upvote 0
Solution
Hi RSnap
Please make sure the below code is pasted into the Sheet module
For example double click on Sheet1(Sheet1) in the project window

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
            If Target.Column = 3 Then ThisWorkbook.Save

End Sub
thats worked like a charm thank you
 
Upvote 0

Forum statistics

Threads
1,214,923
Messages
6,122,286
Members
449,076
Latest member
kenyanscott

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top