I am working SSRS report, I have a field named as Details
and I would like to get the count of other field SerialNumber
.
So in short I want to get the total count of SerialNumber
which has no Details
.
I tried below but not working. It always give the total count count without considering blank Details
=CStr(COUNT(IIF(Not(IsNothing(Fields!Details.Value)),Fields!SerialNumber.Value,0)))
How can I achieve this by expression? Please help.