Showing posts with label builder. Show all posts
Showing posts with label builder. Show all posts

Tuesday, March 27, 2012

Distribute ReportBuilder

Hi,

Is there a way to distribute Report Builder application to clients computers ? (avoiding them to connect and download individually the application on the Reports WebSite)

Thanx in advance.
Grgory.

i'm searching too how distribute this app to clients computers... Anyone idea ?
|||

Still looking!

Thanx in advance.

Grgory.

|||No. Report Builder's distribution mechanism is via ClickOnce. From what I understandthere are no plans to allow distribution in any other fashion. Sorry!

Distribute ReportBuilder

Hi,

Is there a way to distribute Report Builder application to clients computers ? (avoiding them to connect and download individually the application on the Reports WebSite)

Thanx in advance.
Grgory.

i'm searching too how distribute this app to clients computers... Anyone idea ?
|||

Still looking!

Thanx in advance.

Grgory.

|||No. Report Builder's distribution mechanism is via ClickOnce. From what I understandthere are no plans to allow distribution in any other fashion. Sorry!

Sunday, March 11, 2012

Displaying Multi parameter info : Report builder

Hi All,

Is there is any way to display the User selected parameter information if the parameter is multiselect ?

I was able to display if the parameter is single valued but if it is multivalued (list), i was not able to .

Any help is greatly appreciated.

Regards,

Can you elaborate your question?

Regards,
Ramesh KS

|||

Hi!

Join([your parameter, either value or label], [your delimiter]), will do the trick for you.

//H?kan

|||

Hi.

Thanks a lot , it worked.

|||

HI Bala_SSRS:

Could You Post Your Sources for a code sample ?

TKS

|||

Here is the sample code

=String.Format("Organization Name: {0}",Join(Parameters!OrganizationName.Value,";"))

Thanks,

Bala

Sunday, February 19, 2012

display parameter value on Report Builder generated report

hi all,
is it possible to display the parameter value on the report for
parameters which contain multiple selection ?
i can display the parameter value if it has only 1 value. how can i
display the values if there are more than 1 ?
Thanks!Yes can be done. use
e.g in your text box
=Join(Parameters!empno.Value, ",")
Amarnath
"minority" wrote:
> hi all,
> is it possible to display the parameter value on the report for
> parameters which contain multiple selection ?
> i can display the parameter value if it has only 1 value. how can i
> display the values if there are more than 1 ?
> Thanks!
>|||thanks Amarnath.
previously, i tried Parameters!empno.value because i only filter by 1
value but will have error. so i didn't think that the Join function
will work.
thanks.

Tuesday, February 14, 2012

display filter info in Report Builder

hi all,

is it possible to display the value of filter on the report (Report Builder) instead of displaying

Filter: Productions with: All of (Month in (prompted))

which is not informative. ?

thanks !

This is not supported by the auto-generated filter descriptions. However, a workaround is described here:

http://blogs.msdn.com/bobmeyers/archive/2006/03/26/561147.aspx

|||

Hi Bob,

thanks a lot for the info. was looking high and low in help file and even online but couldn't get anything.

however, i have problem displaying the parameter value if it's in text format.

i've tried writing the following expressions

=String.format("Property: ", Parameters!Property.Value)

="Property: " & Parameters!Property.Value

but they won't work.

thanks..

|||

Hi Bob,

will this solution that you suggested work with parameters which have multiple selections?

Thanks!

|||I've never tried it. You might need to use the String.Join method to get the values into a single string.

display data without auto grouping in report builder

I have a report built by report builder. When I run report several column
data did not show repeated data on each row. Instead it just show one time
and the other repeated data field just auto merged with the first cell. Is
there any way to show each row data no matter it is the same as the one in
the cell above?
Example now I see:
Type City State
HSLA PHILADELPHIA PA
NORCROSS GA
PAOLI PA
PAOLI PA
What I want to get is:
HSLA PHILADELPHIA PA
HSLA NORCROSS GA
HSLA PAOLI PA
HSLA PAOLI PA
Is it possible to do that in "design report" or after hit "Run Report"? I
don't want the auto grouping in adhoc report. Please HELP! I really
appreciate it.I figured it out. The column is shown in the group if you click 'sort and
group'. Just drag all the fields you want and drop them on the table so that
the group is created in entity name instead of the individual field names.
"Daisy" wrote:
> I have a report built by report builder. When I run report several column
> data did not show repeated data on each row. Instead it just show one time
> and the other repeated data field just auto merged with the first cell. Is
> there any way to show each row data no matter it is the same as the one in
> the cell above?
> Example now I see:
> Type City State
> HSLA PHILADELPHIA PA
> NORCROSS GA
> PAOLI PA
> PAOLI PA
> What I want to get is:
> HSLA PHILADELPHIA PA
> HSLA NORCROSS GA
> HSLA PAOLI PA
> HSLA PAOLI PA
> Is it possible to do that in "design report" or after hit "Run Report"? I
> don't want the auto grouping in adhoc report. Please HELP! I really
> appreciate it.
>