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.
| Author |
Topic |
|
Anand.A
Posting Yak Master
109 Posts |
Posted - 2012-01-30 : 07:32:04
|
| hii create a report in ssrs..in that report i used row group and column group in matrix reportso in that columni 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 detailsif 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= 45but in that Count(Fields!data.Value) i want only for A details 10how to do this in ssrsanand |
|
|
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 MVPhttp://visakhm.blogspot.com/ |
 |
|
|
|
|
|