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 |
BCJ
Starting Member
42 Posts |
Posted - 2008-07-08 : 15:11:28
|
Hi All,How could i display parameter values in a report if the parameter field has multi-value option enabled, i mean i have to display all the multi selected values of that particular field on the report.The data type is string and right now i can display the value by multi-value option disabled, when i enabled the multi - value option i'm getting the output like-Build complete -- 0 errors, 0 warnings[rsInvalidExpressionDataType] The Value expression used in textbox ‘textbox18’ returned a data type that is not valid.Preview complete -- 0 errors, 1 warnings |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2008-07-09 : 00:57:03
|
use like this=join(parameters!yourparameter.value,",") |
 |
|
|
|
|