Consider the following VBA (whatever the latest version is) Subroutine:
Private Sub Worksheet_Change(ByVal Target As Range)
'If Not Application.Intersect(Range("H11:H13"), Range(Target.Address)) Is Nothing Then
Call ThisWorkbook.testEIRR
'End If
End Sub
Now, if the commented out lines are NOT commented out, then changing the contents of cell H11 does the right thing (]updates the value computed by some function and stores it where it is supposed to). However, with the condition commented out (as above), I get a stack overflow (o, the irony!)
Any idea how to fix it?