Check of DB.NULL is Formula Editor.

imranIBM

Member
Joined
May 17, 2005
Messages
9
Programming Experience
3-5
Hi,

I am unable to check DB.Null value from Formula Editor in Crystal reports .Net. If the column value is NULL then display "Some text" else "Column Value".

Database is SQLServer 2000.

Thanks
Imran
 
use IsNull() ....
If IsNull(reportfield) Then
'I'm NULL!'
Else
'I'm NOT null'

-tg
 
Back
Top