Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
='=NOT ISNULL(REASON_FOR_DELAY)'
='=NOT ISNULL(REASON_FOR_DELAY)'
Hi, you can try this:
=IsNull(REASON_FOR_DELAY)<>-1
Hope it helps.
Cheers,
Andrés
Thank you.
='=NOT ISNULL(REASON_FOR_DELAY)' worked.