Hi everyone!
I created a CR2008 rpt using VS2008. This report will export data from a stored procedure. I created a header that shows the filters that the user chose. Those filters are the stored procedure's input parameters. Those parameters can be null. So I created a formula to format those values.
Formula @User.
IF ISNULL({?@I_USER}) THEN
"<All>"
ELSE
{?@I_USER}
So
{?@I_USER} is a stored procedure's parameter. When I preview the report using Crystal Main Report Preview Tool, it works fine. But when I run the application (VB.NET), occurs the following error: "field is not known".
Any ideas?