Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
BlankI have several workbooks with multiple sheets filled with formulas. At the same time, I also have a number of modules and sub procedures in my vba code.
Is there a method/procedure/function to automatically run a module/sub procedure when a user chooses "Calculate" or presses "F9" in a worksheet?? Thanks, Don |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
BlankPut codes into the SheetCalculate event of the module "ThisWorkbook"
Private Sub Workbook_SheetCalculate(ByVal Sh As Object) End Sub "DonW" 撰寫於郵件 ... I have several workbooks with multiple sheets filled with formulas. At the same time, I also have a number of modules and sub procedures in my vba code. Is there a method/procedure/function to automatically run a module/sub procedure when a user chooses "Calculate" or presses "F9" in a worksheet?? Thanks, Don |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
BlankThanks Eddy
"Eddy" wrote in message ... Put codes into the SheetCalculate event of the module "ThisWorkbook" Private Sub Workbook_SheetCalculate(ByVal Sh As Object) End Sub "DonW" 撰寫於郵件 ... I have several workbooks with multiple sheets filled with formulas. At the same time, I also have a number of modules and sub procedures in my vba code. Is there a method/procedure/function to automatically run a module/sub procedure when a user chooses "Calculate" or presses "F9" in a worksheet?? Thanks, Don |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro to calculate next rate increase in weeks | Excel Discussion (Misc queries) | |||
Macro to calculate, merge, and delete | Excel Worksheet Functions | |||
Excel 2003 Macro to re-calculate until... | New Users to Excel | |||
Calculate Now F9 Unavailable after macro run | Excel Discussion (Misc queries) | |||
Macro that hide or unhide and not calculate or calculate | Excel Programming |