Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi NG,
If a user changes the dialog EXTRA/OPTIONS/CALCULATION, I want to start a Makro. How can I do this? (Excel 2003) tx Jörg |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Jörg,
You can check with and event. For example, checking after the user changes the selection: In a standard module: Option Explicit Public CalcMode As XlCalculation In the codemodule of the ThisWorkbook object: Private Sub Workbook_Open() CalcMode = Application.Calculation End Sub Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range) If Application.Calculation < CalcMode Then MsgBox "Calc Mode has changed" CalcMode = Application.Calculation End If End Sub HTH, Bernie MS Excel MVP "Joerg Lensing" wrote in message oups.com... Hi NG, If a user changes the dialog EXTRA/OPTIONS/CALCULATION, I want to start a Makro. How can I do this? (Excel 2003) tx Jörg |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Autofill: can it detect change in value? | Excel Discussion (Misc queries) | |||
Detect speech option in Excel 2003 | Excel Programming | |||
Is there a VBA Event to Detect Change in ActiveCell Focus? | Excel Programming | |||
detect cell change | Excel Programming | |||
Detect Value change of a Cell | Excel Programming |