SQL Server 2005 Reporting Services: How to count rows that are not null? Any hints for calculating totals?
Using Reporting Services in SQL Server 2005: Is there a way to count only records that are not null; similar to "COUNTA" in Excel? I would think this would be very simple process, but nothing I have tried has worked. For example, I have tried using the following expression for "Completed", which is one column I am trying to count: =count(IIF(Fields!Completed.Value="END")) However, this throws the "wrong number of arguments" error. "Completed" will have a value of "End" or be null. If necessary , I can try to work this into my SQL query, but the query is already incredibly complicated. Also, I