SQL Server Reporting Services
A SQL Server technology that supports the creation, management, and delivery of both traditional, paper-oriented reports and interactive, web-based reports.
2,915 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi,
I have been going mad at trying to get this to work, but it just returns the full count and not the filtered count I'm trying for.
=COUNT(iif(Fields!PLT_CHECK.value=0,1,0))
and
=COUNT(iif(Fields!PLT_CHECK.value=1,1,0))
it
Please advice where I'm going wrong.
Have got it to work =COUNT(iif(Fields!PLT_CHECK.value=0,1,0)) to =COUNT(iif(Fields!PLT_CHECK.value=0,1,Nothing))