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
 Development Tools
 Reporting Services Development
 Reporting services - queries

Author  Topic 

vaishanavi
Starting Member

9 Posts

Posted - 2009-03-20 : 00:43:20
Hi,

1.select dist_code,Dist_name from District


when we are binding to a dataset, in the expression
when fields are selected from dataset it is showing
dist_code as sum(dist_code)
and dist_name as First(dist_name)

Issue :

it is repeating to each and every table..that if it is numeric
field it is showing sum (Field_name) and if it is varchar it is showing
First (field_name)


2.select count(category ) from Table_name where categorytype='A'

If we want count from a particular column it is showing the sum(field_name)


3. when we are binding more than one datasets,
in expressions, it is showing only fields in first dataset,
but it is not showing 2nd and 3rd dataset fileds
   

- Advertisement -