Is "linestatus" the name of your column?  If so, you cannot construct
an "IF" statement in that way.  You must define a variable that points
to your column, and reference that:

Report variable:  vLineStatus = LineStatus

If statement:  IF vLineStatus IS NULL THEN



Karen

 
> I have a report (customer invoice) with fields in the detail band for :
> a LABEL FIELD  'Item Status:'        component id is  'idstatus'
> a DBText Field      'DeliveryStatus'         component id is 'idstatus'
> 
> On some orders there is tax or freight, and I would like for the 2 
> fields not to print as there is no delivery status on those items.
> 
> In the detail band, I have an before generate EEP:
> 
> IF linestatus is NULL THEN
> PROPERTY idstatus VISIBLE  'FALSE'
> ENDIF
> RETURN
> 
> Those fields still print.
> What am I doing wrong?
> 
> Dick Fey
> Carpet Broker Inc.

Reply via email to