Here are two suggestions.
Your request uses the ISNULL function.
Select
ISNULL(YourExpression, 0)
From Table
In SSRS Use an expression for the fields you want to exclude.
iif(fields!Field.Value is nothing , 0 , Fields!Field.Value)
Hope this helps :)
source
share