Saving current worksheet on cell value change

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Let's say I want the current worksheet to save when the value changes in cell
b15 or b45 or e15, etc. How can I get this done.

Thanks.
 
one way:

Put this in your worksheet code module (right-click the worksheet tab
and choose View Code):

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If Not Intersect(Target, Range("B15,B45,E15")) Is Nothing Then _
ThisWorkbook.Save
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top