Hello,
I am trying to create the following If-Then Statement in reportNet 1.1:
IF ( [GIFT_AMOUNT]is null ) THEN
( [GIFT_CREDIT_AMOUNT] )
ELSE
( ' ' )
Both the Gift_Amount and Gift_Credit_Amount fields are in the query. However, the report does not run. However, if I change the statement to the following, the report runs fine:
IF ( [GIFT_AMOUNT]is null ) THEN
( 'A' )
ELSE
( 'B' )
The report runs, and the column now has either an 'A' or 'B' displayed.
My question is this, shouldn't I be able to create an If- Then contruct in which the results can display a field (i.e data model item) already selected in the query?
Thanks
I am trying to create the following If-Then Statement in reportNet 1.1:
IF ( [GIFT_AMOUNT]is null ) THEN
( [GIFT_CREDIT_AMOUNT] )
ELSE
( ' ' )
Both the Gift_Amount and Gift_Credit_Amount fields are in the query. However, the report does not run. However, if I change the statement to the following, the report runs fine:
IF ( [GIFT_AMOUNT]is null ) THEN
( 'A' )
ELSE
( 'B' )
The report runs, and the column now has either an 'A' or 'B' displayed.
My question is this, shouldn't I be able to create an If- Then contruct in which the results can display a field (i.e data model item) already selected in the query?
Thanks