cancel
Showing results for 
Search instead for 
Did you mean: 

Suppress Page header when field is contain NULL value into crystal report

nikunjmehta2290
Participant
167

Dear all,

How can we suppress the one field which has datatype type VARCHAR.

I am trying below mentioned but it's gives me error like .... ) missing.

  • ISNULL(EI_ACK_NO <> "")

The ) missing error comes.

SAP Business One HANA

Kind Regards,

Nikunj

Accepted Solutions (1)

Accepted Solutions (1)

ido_millet
Active Contributor
0 Kudos

IsNull() accepts only one argument.
It looks like you simply need:

NOT IsNull(<your field>)

Answers (2)

Answers (2)

yogananda
Product and Topic Expert
Product and Topic Expert

nik2290

The correct syntax would be:

ISNULL(EI_ACK_NO, '') <> ''
nikunjmehta2290
Participant
0 Kudos

The ) missing error comes while executing ISNULL(EI_ACK_NO, '') <> ''

SonTran
Active Contributor
0 Kudos

Hi,

Try this

ISNULL(EI_ACK_NO)
nikunjmehta2290
Participant
0 Kudos

The ) missing error comes while executing ISNULL(EI_ACK_NO) this command into during Suppress.

nikunjmehta2290
Participant
0 Kudos

It is also not the suppress header when I have passed this parameter into crystal report.

nikunjmehta2290
Participant
0 Kudos

I have found the correct syntax is as mentioned below.

If ({GSTTAX_ARINVOICE.EI_ACK_NO}) = "" then

true;