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)
 Textbox

Author  Topic 

SMK
Starting Member

6 Posts

Posted - 2012-02-22 : 00:14:43
can a text be associated with a dataset.

SMK :)

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2012-02-22 : 00:16:59
sorry thats not clear. if you're asking on how to show data from dataset you need to use expression like

=Fields!YourField.Value

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

Go to Top of Page

SMK
Starting Member

6 Posts

Posted - 2012-02-22 : 00:24:10
sorry, can i associate a textbox to a dataset.

SMK :)
Go to Top of Page

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2012-02-22 : 00:29:03
yep..but keep in mind that a textbox can show only single value at a time so you need to apply some kind of aggregation over field with scope as dataset

something like

First(Fields!yourField.value,"dataset")
Max(Fields!yourField.value,"dataset")
Sum(Fields!yourField.value,"dataset") ...

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

Go to Top of Page
   

- Advertisement -