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
 SQL Server 2008 Forums
 Analysis Server and Reporting Services (2008)
 Total Question

Author  Topic 

jbrown7232
Starting Member

22 Posts

Posted - 2011-05-24 : 11:32:48
Hello I have a column in SSRS that is displaying a varchar column named Param_Value from SQL. I would like to create a column to the right and count all the Param_Values that is in each report.

sunitabeck
Master Smack Fu Yak Hacker

5155 Posts

Posted - 2011-05-24 : 13:19:42
Add the column in the designer and use an expression such as

=count("*","YourDataSetName")
or

=count(Fields!YourVarcharColumName.Value,"YourDataSetName")
Go to Top of Page
   

- Advertisement -