Hi,
I am looking for ways to debug my Crystal report. Sometimes when my application generates a report, the report only displays the top of the report with no results displayed at all. I am thinking that the reason for this is that my formula sometimes returns a value of ZERO. In turn this results in the report not being generated.
Here is my formula. Is there a way to step through the execution of this crystal reports code, without having to start my C#/ASP.NET application in the debugger?
[code]iif ({@RptMonth} <= {@CrtMonth} AND {@RptYear}=2008.00,{@Amt}/1000,0)[/code]
I have tried stepping through the C#/ASP.NET code, but this is useless, becuase I am not able to trace into the Crystal report formula.
Someone please help.