Friday, February 17, 2012

Display Multi Value parameter in the report as a field

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.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.|||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.|||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.|||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.

No comments:

Post a Comment