Hi,

I would like to show the Multi value parameter values in my report in the
title.
How can i display all value with comma separated. like If the user selects 4
values of out of 100 , I have to show the report title like "Event
Data:comp1, comp2.."


Regards,
Sriman.

RE: Display Multi Value parameter in the report as a field by MichaelC

MichaelC
Mon May 14 12:24:04 CDT 2007


Use the Join.String(Parameter!MyParameter.Value,",") method

Michael

"Sriman" wrote:

> Hi,
>
> I would like to show the Multi value parameter values in my report in the
> title.
> How can i display all value with comma separated. like If the user selects 4
> values of out of 100 , I have to show the report title like "Event
> Data:comp1, comp2.."
>
>
> Regards,
> Sriman.

RE: Display Multi Value parameter in the report as a field by Sriman

Sriman
Mon May 14 12:33:03 CDT 2007

In the expression I have written like this..
=Join.String(Parameters!paramComputerName.Value,",") and got this error
[BC30516] Overload resolution failed because no accessible 'Join' accepts
this number of arguments

Regards,
Sri

"Michael C" wrote:

>
> Use the Join.String(Parameter!MyParameter.Value,",") method
>
> Michael
>
> "Sriman" wrote:
>
> > Hi,
> >
> > I would like to show the Multi value parameter values in my report in the
> > title.
> > How can i display all value with comma separated. like If the user selects 4
> > values of out of 100 , I have to show the report title like "Event
> > Data:comp1, comp2.."
> >
> >
> > Regards,
> > Sriman.

RE: Display Multi Value parameter in the report as a field by MichaelC

MichaelC
Mon May 14 12:39:02 CDT 2007


try just using Join() instead of Join.String(). How many entries from the
multi value are they picking?



"Sriman" wrote:

> In the expression I have written like this..
> =Join.String(Parameters!paramComputerName.Value,",") and got this error
> [BC30516] Overload resolution failed because no accessible 'Join' accepts
> this number of arguments
>
> Regards,
> Sri
>
> "Michael C" wrote:
>
> >
> > Use the Join.String(Parameter!MyParameter.Value,",") method
> >
> > Michael
> >
> > "Sriman" wrote:
> >
> > > Hi,
> > >
> > > I would like to show the Multi value parameter values in my report in the
> > > title.
> > > How can i display all value with comma separated. like If the user selects 4
> > > values of out of 100 , I have to show the report title like "Event
> > > Data:comp1, comp2.."
> > >
> > >
> > > Regards,
> > > Sriman.

RE: Display Multi Value parameter in the report as a field by Sriman

Sriman
Mon May 14 12:51:01 CDT 2007

thank you.
join() worked fine to me.

"Michael C" wrote:

>
> try just using Join() instead of Join.String(). How many entries from the
> multi value are they picking?
>
>
>
> "Sriman" wrote:
>
> > In the expression I have written like this..
> > =Join.String(Parameters!paramComputerName.Value,",") and got this error
> > [BC30516] Overload resolution failed because no accessible 'Join' accepts
> > this number of arguments
> >
> > Regards,
> > Sri
> >
> > "Michael C" wrote:
> >
> > >
> > > Use the Join.String(Parameter!MyParameter.Value,",") method
> > >
> > > Michael
> > >
> > > "Sriman" wrote:
> > >
> > > > Hi,
> > > >
> > > > I would like to show the Multi value parameter values in my report in the
> > > > title.
> > > > How can i display all value with comma separated. like If the user selects 4
> > > > values of out of 100 , I have to show the report title like "Event
> > > > Data:comp1, comp2.."
> > > >
> > > >
> > > > Regards,
> > > > Sriman.