Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 Development Tools
 Reporting Services Development
 Null Value

Author  Topic 

lily_wibisana
Starting Member

29 Posts

Posted - 2008-10-01 : 08:56:59
Hi,
Is there any one know how to check null value in the field?
=IIF(fields!m.value is null,"", fields!m.value)
I used the statement above but it gave me an error.
Thank you for your help.

afrika
Master Smack Fu Yak Hacker

2706 Posts

Posted - 2008-10-01 : 09:52:54
Have you tried, isnull or coalesce ?
Go to Top of Page

Tart_SQL
Starting Member

41 Posts

Posted - 2008-10-02 : 00:47:45
quote:
Originally posted by lily_wibisana

Hi,
Is there any one know how to check null value in the field?
=IIF(fields!m.value is null,"", fields!m.value)
I used the statement above but it gave me an error.
Thank you for your help.



Try
=IIF(IsNothing(fields!m.value), "", fields!m.value)
null is not a recongnized synthax with SSRS.
Go to Top of Page
   

- Advertisement -