Thread: change event
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Gary''s Student Gary''s Student is offline
external usenet poster
 
Posts: 11,058
Default change event

Put the following in worksheet code:

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Intersect(Target, Range("D34:P34")) Is Nothing Then
ActiveWorkbook.Save
End If
End Sub

--
Gary''s Student - gsnu200727


"smonsmo" wrote:

I have a worksheet that calculates the amount of job hours per employee and
customer. These times are entered each day as I recieve the report in cells
d34:p43. What I would like to be able to do is input the time, adding values
to several of these cells in the above range. When I click the cursor on any
other cells outside that range, I would like the workbook to automatically
save itself.
Thanks for the help.
Steve