Microsoft SQL Server 2008 R2 Reporting Services provides a server-based platform designed to support a wide variety of reporting needs enabling organizations to deliver relevant information where needed.

learn more… | top users | synonyms (1)

3
votes
1answer
446 views

Sql Server Reporting Services Web Service access problem from a Silverlight Application

I hope you can help me with this one... :) I have a .net application which holds a Silverlight component. I also have Sql Server 2008 R2 with Reporting Services installed. The SSRS has been added ...
3
votes
1answer
551 views

Get 2nd Value in Dataset in Reporting Services

This seems to be a very simple question, but I am trying to get the 2nd value in a dataset to display as a matrix's header value. In this report, lets say that I have 2 datasets. In Dataset1, I ...
3
votes
1answer
1k views

How do I solve column width problems in a SSRS Tablix?

I'm creating a simple report from Microsoft Dynamics CRM. When I pull in the following dataset: SELECT FQD.productidname , FQD.NEW_PRICEBREAKS , FQD.NEW_WEEKSARO , ...
3
votes
1answer
736 views

SSRS Dynamic Shared Data Source

I have an ASP.Net Web site that displays various SSRS reports using the Microsoft Report Viewer Control. I need to be able to specify a data source at runtime. It seems like I should be able to just ...
2
votes
4answers
12k views

Using dropdown parameters in SSRS report

I can see the text box for my data set that having the "select col1 from table name " as query. I want to populate dropdown instead of text box. I have created the parameter for it . what to do?
2
votes
2answers
5k views

Problem with default parameters in SSRS report

I have an SSRS (SQL Server 2008 R2) report with several parameters. I'm having an issue where one of the parameters is not consistently choosing its default value when the report is first loaded. ...
2
votes
1answer
2k views

How to display time value in a given string format within SSRS report?

I want to Display time duration in SSRS report My DB field is time in SQL. It converts Timespan in SSRS. format is : 1:00 PM - 3:50 PM How can i do this ? Fields!StartTime.Value.ToString() + " PM ...
2
votes
3answers
3k views

How to copy a report in SQL Server Reporting Services 2008

I have a report that I created in SQL Server Reporting Services 2008. I now want to create a new report, that is very similar that the one I already created. How do I do that without writing the ...
2
votes
1answer
6k views

“An item with the same key has already been added” Error on SSRS When Trying to Set Dataset

When i try to set the Dataset in SSRS IDE, i get the error you see in the snapshot. The query works totally fine in SQL Server Management Studio, i wonder where did i go wrong?! The connection to DB ...
2
votes
2answers
223 views

first day of the same month

I have a date parameter (@rptMonth) that is selected by the user from a datepicker calendar. The date must be the first day of the month. No matter what the user selects I'd like to turn that into ...
2
votes
3answers
6k views

SSRS: Relative URL Hyperlink

In SSRS 2008 I would like to create a relative path URL. Long story short I have a subscription that outputs a few thousand static HTML pages to a folder that is used as content for a website. In ...
2
votes
6answers
16k views

Administrator cannot administer sql server reporting services

I am running SQL Server Reporting Services on SQL Server 2008 Standard and trying to get the web pages to work. What do I have to do to get RS (Report Manager, Reporting Services Connection), to ...
2
votes
2answers
4k views

Row color and Alternate Row color for Table in RDLC Report

How do I give row color and alternate row color for a Table in RDLC report? When I googled I found most of the result says something like = iif(RowNumber(Nothing) mod 2, "Red", "White") OK! But where ...
2
votes
1answer
2k views

Howto ignore SSL certificate error in WebService request?

Question: I have written a console program that uses the SQL server 2005 web service to upload reports to SQL Server 2005 reporting service (so that I don't have to upload 100 reports by hand ...
2
votes
1answer
61 views

how can i concatenate fields inside of my dataset?

i have a dataset, dataset1: i am trying to do: select col1+col2, col3 from mytable this does not work; however this is no problem: select col1, col2, col3 from mytable how can i concatenate ...
2
votes
3answers
706 views

SSRS Convert date and groupby

I have a DateTime type column called CreatedDate in my SQL table, and I have created a report using SSRS 2008. I have grouped my table in my report with this CreatedDate. I need to orderby this ...
2
votes
3answers
3k views

“Report item not linked to a dataset”…but it is

I am getting this error in the expression editor for a chart control. Category - Fields Item - 'Fields selection frame' is where I see the error The chart IS linked to a dataset though and it ...
2
votes
2answers
9k views

Reporting Services Chart - Custom Axis Label

I have a SQL Server Reporting Services (2008) chart (error chart). The X-axis has date intervals 1/1/2009, 2/1/2009, etc. The Y-axis has numeric intervals of 50. Values on the Y-axis are 0, 50 and ...
2
votes
1answer
246 views

Changes to parameter not showing on Report Server after deployment

I have 7 parameters (3 multi select of string, 1 DateTime, 3 string values) in my SSRS 2008 report, and I have set all the parameters as null in the default value. It's working fine in my preview ...
2
votes
2answers
1k views

How to create a report with sections and page breaks using SSRS

I'm trying to create a report that looks like this: using a select from this table: (fiddler here for query and data) CREATE TABLE StudentData ( id int PRIMARY KEY IDENTITY, name varchar(30), ...
2
votes
2answers
178 views

Moving and merging reporting server instances

I have a machine where we have SSRS and SQL Server running, Currently we use SSRS and configured it to use localhost SQL Server hosted ReportServer and ReportServertempdb. Now we need decomission ...
2
votes
1answer
3k views

Parameter validation failed. It is not possible to provide valid values for all parameters. (rsParameterError) sql reporting 2008

I am using sql reporting and written query SELECT * FROM users WHERE created_by = @createdby and passing parameter using this code in code behind file to call this report. param[0] = new ...
2
votes
2answers
1k views

What is the difference between ReportService2005.asmx and ReportExecution2005.asmx Web Service Endpoints in SSRS?

Does anyone know what the difference is between the two web service endpoints ReportService2005.asmx and ReportExecution2005.asmx in SQL Server Reporting Services? is there an article that I can go ...
2
votes
2answers
7k views

How do I make wildcards work in a like operator in SQL Server reporting services?

I have added a filter expression using the like operator. What do I put in the value field? my parameter is named @test and I'd like the filter to function as a like %@test% would in SQL. I want it ...
2
votes
2answers
7k views

“Select All” with SSRS 2008 Parameters

I want a parameter to load available values from a query (or whatever) and "allow multiple values." When I do so the list begins with "Select All." That's great, but there appears to be no way to ...
2
votes
1answer
563 views

SSRS - Group_Concat Equivalent using an Expression?

Can I use expressions in Sql Server Reporting services to combine all of the values of a column within a group? I'm trying to accomplish what MySQL's group_concat function does, but in the report ...
2
votes
3answers
1k views

Is it possible to specify the data source during execution of an SSRS report via the web service?

I have a single server that hosts our production and development databases. It's running SQL Server 2008 (not R2) with SQL Server Reporting Services. I deploy a VS 2008 Reporting Services project to ...
2
votes
1answer
6k views

Can't Deploy or Upload Large SSRS 2008 Report from VS or IE

So far in this project I have two reports in VS2008/BIDS. The first one contains 1 tablix and is about 100k. The second one contains 3 tablixes (tablices?) and is about 257k. I can successfully ...
2
votes
2answers
9k views

Reporting Services 2008: Using user!userid in Parameters

I have a report with a parameter that is populated by a list of sales representatives returned by a query. I want to filter that list based on security rights of the user running the report. In order ...
2
votes
2answers
144 views

How do you convert a stored procedure using dynamic SQL into a non-dynamic SQL one(SSRS)?

I've been working on SSRS reports, and for one of my stored procedures , it uses dynamic SQL suchthat i'm getting this error: An item with the same key has already been added. So I've googled that ...
2
votes
1answer
185 views

DataSource via Parameter + Security

My question relates more to the security of its implementation than just technical questions. I have developed all the reports and are on Reporting Server. They are used by application using the ...
2
votes
2answers
87 views

changing indicator background

I have a table with alternating row colors (I used the following expression =iif(RowNumber(Nothing) Mod 2, "Gainsboro", "White")). Now in one of the table's cell I putted an indicator. When I run my ...
2
votes
1answer
465 views

How can I eliminate #error on SSRS expression when dividing by zero?

I am trying to eliminate #error when dividing by zero on my SSRS report. I have the following expression which still gives #error =IIf(IsNothing(Lookup(Fields!id.Value, Fields!id2.Value, ...
2
votes
1answer
3k views

Optional multi-valued parameters in SSRS

I have 3 multivalued parameters in my report.Out of them 2 are optional. Is there any way to get the results in the report with out selecting any from the 2 optional parameters. My stored proc checks ...
2
votes
2answers
249 views

how to exclude column from a report

i am including column 13 as a dummy column here: +----+---+---+---+----+---+---+---+---+---+----+----+----+----+ | | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | ...
2
votes
4answers
917 views

divide by zero/null workaround in SSRS 2008 report

I have a report with a field whose value was the expression: Fields!TotalPrice.Value/Fields!TotalSlots.Value Although sometimes TotalSlots was blank and thus I was getting a divide by zero runtime ...
2
votes
1answer
1k views

How to export CRM 2011 SSRS reports as SQL query reports, instead of fetchXML reports?

When I download report from CRM 2011 all queries are exported as fetch XML. I know this is for support of Online version of CRM. But our deployment is on-premises, and there is no need of messy fetch ...
2
votes
2answers
4k views

Listing all Data Sources and their Dependencies (reports, items, etc) in SQL Server 2008 R2

I am new to SQL Server, and I am sorry if there is an obvious solution to my question but I can't seem to find it. I am looking to generate a report (or list) of all the data sources and their ...
2
votes
2answers
958 views

SSRS BIDS Report Manager - Control

Is there anyway to have more control over Report Manager, is seems bizzare for such a sophisticated product to allow next to no control over the report manager section other than rename folders and ...
2
votes
4answers
2k views

Is there a report tool that allows users to create their own reports?

I have looked around a bit but I can't find a tool that fit my needs. What I need is a tool that allows users to create their own reports preferably from a web interface where the user is able to ...
2
votes
1answer
10k views

Column and Row grouping in SQL Server Reporting Services 2008

This is the desired result I need to populate as a report, where xx is number of people. I have a table which has fields like: ---------- table1 ---------- id state year(as Quarter) gender I ...
2
votes
1answer
7k views

Expression to change specific value text color in string of values in SSRS based on another field

I have a field in my SSRS report, that contains a string of numbers delimited with commas (from a coalesce select in SQL). It looks like 12, 91, 160, 171, 223. I would like to change the text color ...
2
votes
1answer
3k views

Conditional Action in SSRS

I want my textbox to have an action ONLY if the condition is true, otherwise no action. This is what I have as my current action expression for going to another report: =IIf(Fields!MyTextbox.Value = ...
2
votes
2answers
75 views

Data Labels Being Swallowed in Area Chart in SSRS 2008

I have a Stacked Area Chart in SSRS 2008 R2. As you can see, the data labels are swallowed both left and right. If I change the chart type to any area chart I have the same problem. If I change to ...
2
votes
1answer
495 views

Drillthrough report in SSRS 2008 using parameter values from chart series?

I'm in the middle of creating a Dashboard System for my company and it consists of Excel, Graph and Gauge Reports that are designed in Reporting Services 2008. I have a Pie Chart that contains the ...
2
votes
3answers
660 views

Get IP Address of user/client viewing report in SSRS 2008 Report Manager

There must be a way to do this. I simply need a way to expose the ip address (or computer name - but i think ip is easier to get) of the user who is viewing a report on a SQL 2008 (not r2) report ...
2
votes
1answer
2k views

SQL Reporting Services IIf statement evalutes both sides of if causing #ERROR

I am currently working on a report which has data injected into it from a Web Service. This webservice sends it a "double?" permitting null values. In the report it displays the values returned which ...
2
votes
1answer
615 views

SSRS report with each category a separate table/grid

I am using BIDS and SQL Server Reporting Services (SSRS) 2008 R2 to build a report. And I want the each category to show as a separate table/grid. Important: the columns (CELERY, EGG etc) are dynamic ...
2
votes
1answer
2k views

SSRS no data in report

I have a single tablix on the SSRS report which fetches data from a stored procedure. I am trying to show a meesage to the User when no data is present say, "** There is no data for this report*". I ...
2
votes
1answer
118 views

How to solve Reporting Services's error

I created report using reporting, but i am dizzy for case below here are my query result : ___________________________________________________________________ Col1 | Col2 | Col3 ...

1 2 3 4 5 52