Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 ssrs report

Author  Topic 

Anand.A
Posting Yak Master

109 Posts

Posted - 2012-01-30 : 07:32:04
hi

i create a report in ssrs..
in that report i used row group and column group in matrix report
so in that column
i having date like

A B C
no_count 10 20 15

now i want to create 4 column called A* so in that i want to put only A column details
if i put like this means
=iif(Fields!name.Value="A", Count(Fields!data.Value),nothing)
it takes all the data
so my A * column get 10+20+15= 45
but in that Count(Fields!data.Value) i want only for A details
10
how to do this in ssrs

anand

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2012-01-30 : 10:56:20
put like =Count(iif(Fields!name.Value="A",1,nothing))

------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/

Go to Top of Page
   

- Advertisement -