filmov
tv
How to check is null in a Reporting Services Expression
Показать описание
To perform the equivalent of isnull in a Reporting Services Expression use the IsNothing command. This BICG video guide example demonstrates how to check a field is null, and if so, replace it with a 0, with the following expression...
=IIf(IsNothing(Fields!YourField.Value),0,Fields!YourField.Value)