JenniferMurphy
Well-known Member
- Joined
- Jul 23, 2011
- Messages
- 2,404
- Office Version
- 365
- Platform
- Windows
I have some function calls that have rather complicated parameters. Some are the result of calculations. Others are references to table cells that are, themselves, the result of calculations.
Here's one example:
When debugging, it would be helpful to be able to see the actual values that are being passed. I have a UDF that will display in a cell the text of the expression exactly like it is above. Is there a way that I can display the actual parameters that the function sees? In the above case, that might look like this:
Here's one example:
VBA Code:
=BINOM.DIST([@X1]-1,[@N1]-1,ProbWin,[@Cum1])*ProbWin
When debugging, it would be helpful to be able to see the actual values that are being passed. I have a UDF that will display in a cell the text of the expression exactly like it is above. Is there a way that I can display the actual parameters that the function sees? In the above case, that might look like this:
VBA Code:
=BINOM.DIST(2,5,0.5,False)*0.5