Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Change event? | Excel Discussion (Misc queries) | |||
Worksheet Change event | Excel Discussion (Misc queries) | |||
Worksheet Change Event | Excel Discussion (Misc queries) | |||
cell value change event | Excel Worksheet Functions | |||
Change of Row event | Excel Discussion (Misc queries) |