JenniferMurphy
Well-known Member
- Joined
- Jul 23, 2011
- Messages
- 2,676
- Office Version
- 365
- Platform
- Windows
I am testing a function in my add-in module. It is getting a value error in the calling cell. I set a breakpoint on the Function statement and a couple of other places in the VBA editor, but they never happen.
I wrote another simple function to test the breakpoint function:
Here's the breakpoint:
If I call it from a cell
What the heck is going on now?
I wrote another simple function to test the breakpoint function:
VBA Code:
Function abc(pX)
abc = "Called with " & pX
End Function
Here's the breakpoint:
If I call it from a cell
=abc(3)
, it returns "Called with 3", but the breakpoint never happens.What the heck is going on now?