View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Chick[_2_] Chick[_2_] is offline
external usenet poster
 
Posts: 1
Default Findjjing the range that triggered worksheet calculate

I am using Excel 97.
I use VBA to populate 2 cells with values.
When these cells are populated two adjacent cells containing formulas
trigger the worksheet calculate event. I do not want this to happen.

I have tried using application.caller..

Select Case TypeName(Application.Caller)
Case "Range"
v = Application.Caller.Address
Case "String"
v = Application.Caller
Case "Error"
v = "Error"
Case Else
v = "unknown"
End Select
MsgBox "caller = " & v

But it always returns "Error"

Is there another way to find out what is triggering the worksheet
calculate?