Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

NOT NULL condition in Button

Hi,

In the button expression, the following condition works fine -

='=TEST_CASE_STATUS=' & chr(39) & 'Expired' & chr(39) & ' OR NOT ISNULL(REASON_FOR_DELAY)'

I now want to remove the first condition and have only the second part.  I am trying this, but it is not working -

=NOT ISNULL(REASON_FOR_DELAY)

Please help.

Thanks,

Sudha.

1 Solution

Accepted Solutions
swuehl
MVP
MVP

='=NOT ISNULL(REASON_FOR_DELAY)'

View solution in original post

3 Replies
swuehl
MVP
MVP

='=NOT ISNULL(REASON_FOR_DELAY)'

andrespa
Specialist
Specialist

Hi, you can try this:

=IsNull(REASON_FOR_DELAY)<>-1

Hope it helps.

Cheers,

Andrés

Not applicable
Author

Thank you.

='=NOT ISNULL(REASON_FOR_DELAY)' worked.