Click here to Skip to main content
15,881,172 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi Friends ,

I need find out zero value rows count in ssrs.

for examples,

25
6
0
78
0
5


I need to return 2 .

Regards
Arul
Posted
Comments
damodara naidu betha 1-Nov-12 3:10am    
Please explain it clearly..
Arul R Ece 1-Nov-12 3:17am    
need to find cout of rows .that contains "0" values.

in above example 5 values there.contain 2 zero values.so result is '2'.

1 solution

Use a query like this one:
SQL
SELECT COUNT(FieldName) AS [CountOfZeros]
FROM YourTableName
WHERE FieldName = 0
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900