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.
0
votes
1answer
19 views
Parameter value related issue in SSRS [duplicate]
I am using BIDS to create reports in SSRS.I have added one Parameter PaidMonth and set it's default value to "012013" and deployed the report on report server (http://localhost/reportserver) and ...
0
votes
1answer
41 views
Number formatting on Y axis in SSRS report
I am creating SSRS below report, but Y axis I am getting values with more zeros. I tried to change the number format but still I am getting the below values with more zeros. My actual on y axis is ...
0
votes
1answer
54 views
Error: Subreport could not be shown. Sub Report works in Preview - but not when deployed
I have a main report that runs multiple sub-reports. One of my sub reports runs perfectly fine in Preview, but when I deploy the report and run it from the browser, i simply get:
Error: Subreport ...
0
votes
2answers
32 views
0-value not showing in line graph
I have a dataset that contains a lot of records.
Employee (varchar) | month (int) | Sales (money)
John | jan | 15
John | jan | 6
Hank | jan | 20
Mike | jan | 0
Hank | jan | 12
Pete | jan | 0
Pete | ...
0
votes
0answers
72 views
How do I insert an image as a varbinary data type into SQL Server database
I am just looking for an insert statement for a table with a varbinary type column. I know it's not best practice, and rather that the image file path is stored, but not many images will need to be ...
0
votes
1answer
50 views
Report rsExecutionNotFound when exporting to other formats
I am using CRM 4.0 SSRS. I can display reports which take a long time. When a report displays I can export to Excel, XML or another file type within in 10 minutes. But after exactly 10 minutes, I ...
0
votes
1answer
50 views
How to I get cumulative monthly subtotals in SSRS?
I'm using SSRS to create a report which shows a lot of transactions according to a trade date. I've made a group on the month and year called 'grpMonthYear'. Inside that group I've made a subgroup on ...
1
vote
1answer
65 views
Use DataSet from C# code in a SSRS server report
I have a ReportViewer in an asp.net project which loads a report in
ProcessingMode = ProcessingMode.Remote (A .rdl report that sits on an SSRS server)
I have a DataSet which was generated somewhere ...
0
votes
1answer
59 views
Using AND in Switch Expression in SSRS 2008 ( no nested IIF statement please)
In my ssrs Chart ihave two groupings category and series grouping and i have four block of chart, in each block i have different color:
My question is how to say that in switch statement:
...
0
votes
1answer
56 views
How to display an image from a SQL query that gives a file path in SSRS Report?
I am working on a report, which I would like to display an image in my database from a query with a parameter. For example:
SELECT pictureATTACHMENT
FROM myDatabase.dbo.ATTACHMENT
WHERE ...
0
votes
1answer
25 views
How do I filter my states columns against a East/West parameter?
I have a report that has a column with different states. How do I filter those states from my parameter that has just East and West instead of individual states?
My query for state list is:
select ...
0
votes
1answer
41 views
Capture allotments used for unresolved cases in CRM
Is there a way to capture minutes used from service activities performed under a case without resolving the case ( case status is active)?
I have a report that captures allotment details ( total ...
0
votes
0answers
42 views
Webservice Report Export ReportExecution2005.asmx 404 Not Found
I am trying to connect to a SSRS Server 2008 r2 to access the webservice.
http://srsserver/reportserver/ReportExecution2005.asmx
But whenever I tried to connect to the URL I get a 404 error. I ...
1
vote
2answers
27 views
How to manage odd record(s) in SSRS?
My SSRS report dataset generates 6 colums as shown below. Report is grouped by RepName.
The portfolio column is populated with either A and B. A is regular name and B is odd name. Whenever there is B, ...
-3
votes
0answers
38 views
Issue calling a MySQL stored procedure (with params) via a linked server (SQL Server 2010) using OPENQUERY syntax [closed]
How to call mysql stored procedure via linke server in MSSQL server ?
can any one tell me the syntax ?
1
vote
1answer
40 views
The “NegativeNumbers” parameter is missing a value
I have a report in SSRS that has two datasets. One dataset NegativeNumbers returns one column with 0 or more values that are used in the main dataset.
The problem comes when @NegativeNumbers has no ...
0
votes
1answer
23 views
Vary Data Set Parameter by Chart
I fear I am missing something very obvious here, but I am new to reporting services.
I have a dataset that calls a stored procedure with a number of parameters. I want to create a number of graphs ...
0
votes
0answers
16 views
Using interactive sort on subreport closes the subreport
I have a subreport with interactive sorting enabled. When clicking on this sort in my subreport from the main report the subreport closes. When I open the subreport it´s sorted as wanted but the need ...
0
votes
1answer
76 views
SSRS - Count grouped by Column AND Row in a Tablix
I have an SSRS tablix similar to this:
+----------+-----------+--------+--------+
| Total | RowGroup | Group1 | Group2 |
+----------+-----------+--------+--------+
| Perdiod1 | RowGroup1 | Value ...
0
votes
1answer
29 views
SSRS not loaded dll from .NET framework 4.5
I've created .dll in .NET Framework 4.5 and put it into SQL Server - Reporting Services - Report Server - Bin folder, and when deploy report from developer machine, i got this error:
Error while ...
2
votes
1answer
89 views
Extra empty lines when using visibility and toggle in SSRS
I have this setup for my report, (Produkt = Product, Belopp = Amount)
I have set the properties for the Quarter & Months as following:
Hidden: True
InitialToggleState: False
ToggleItem: ...
-1
votes
2answers
35 views
Text justify center in SSRS report
In my SSRS report, I am getting texts to fill a table from a dataset (SQL Query).
There is a particular line of text from the query that I'd like to be displayed center (i.e. justify center).
Is ...
1
vote
1answer
25 views
Adding optional filter in SSRS
I have a multi valued parameter in my ssrs report. (Bus numbers) the question is how can I make the data set filter property optional? i've seen a blog that makes the filtering optional but my ...
1
vote
1answer
66 views
How to get the max of a sum?
Can anyone tell me how do I get the Max of a calculated field? Below is an image of my situation:
Note that Flag is of type int.
I want to write the expression in the image , but when I use it, it ...
0
votes
0answers
50 views
SSRS chart does not show
I am writing a small sales status report in SSRS. The top has monthly and daily summaries in four small tables. I added a couple charts, and then I added a pie chart. It looked great. I have never ...
1
vote
1answer
58 views
Parameters from Stored procedures Inside SSRS
I am trying to use SQL Server Reporting Studio (SSRS) to create reports that allow user to choose a database on sql server and based on the choosen databases information about tables on the database ...
-4
votes
0answers
34 views
Why is #error displayed in ssrs 2008 r2?
I am working on median function in ssrs 2008 r2.
Based on median function, I am adding some custom code and one field
But, the displayed result is #Error
Why is this error displayed?
0
votes
1answer
23 views
SSRS in Visual Studio doesn´t update directly after changes have been made
I am building a report with one "go to report" and in that new report I have one subreport. Now, when I´m sitting and working with the report and for instance changing the format for a cell the report ...
0
votes
1answer
45 views
The request failed with HTTP status 401: Unauthorized
I have an ASP.NET website that uses the ReportViewer control. I'm using SQL server 2008 from reporting. The reporting services are on another machine on the local network and my asp.net web site is on ...
0
votes
1answer
44 views
Put subreport with paging in footer
We have about 100 different reports. All of them have the same footer, which contains a Page Number, and maybe some other text. The footer design may change regularly.
So now, for exmaple, if we ...
0
votes
1answer
58 views
How can I add an embedded data source to RDL in C# code?
I am trying to use SSRS in a multi-tenant situation. The base version we want to support is SQL Server 2008 but if R2 is needed we might be ok with that.
I am currently using the ...
0
votes
0answers
23 views
RSClient: Unable to Load Control
We are having some problems with SQL Server Reporting Services 2008. We have a ASP.NET application that has a number of reports that we're having some problems with printing of the reports.
When I ...
0
votes
0answers
56 views
ReportViewer 10, ASPX, Paging Issues
I have a small web project, the sole purpose of this project is to house and produce reports for a larger application.
I have a page "ReportManager.aspx" that simply has a ReportViewer (10.0) control ...
0
votes
1answer
24 views
How do you place namespace alias on an XElement? How do you add a datasource to existing RDL document?
I am trying to create an XElement of a datasource to insert into an SSRS RDL file. However, I am unable to seem to get it to create correctly with respect to the rd: alias. Here is the code I am ...
1
vote
0answers
32 views
SSRS: How to Page Break between Row Grouping on uniqueidentifier?
I am developing an SSRS 2008R2 report and I have a tablix. Within this tablix there is a Row group on a uniqueidentifier field. This row grouping works correctly by showing one row per ...
0
votes
0answers
54 views
Get Max Value From A Row in SSRS 2008 R2
I'm having a problem with SSRS 2008 R2. I have a matrix which contains a count of failed codes with the failed codes being the rows and days being the columns.
What I'd like to do is determine the ...
0
votes
1answer
47 views
How do I set 1st row value from sql in ssrs report?
I'm working on SSRS report.
There are two main fields CurrentMV and PreviousMV both are having there different formulas but I'm taking PreviousMV as a value of CurrentMV using ...
0
votes
2answers
40 views
Conditional reporting in SSRS
I have a SSRS 2008 sever running in native mode. I'm trying to figure out if the following is possible and if so, how to do it. I would like to have a scheduled subscription that only generates a ...
0
votes
2answers
34 views
How can I write expression to take an subtraction of two fields in ssrs?
I'm working on SSRS report.
There are two main fields CurrentMV and PreviousMV.
field CurrentMV having expression =Sum(Fields!CurrentMV.Value)
field PreviousMV having expression ...
0
votes
1answer
77 views
How to specify group in RunningValue function in SQL Server Reporting Services?
I have a data set with the following fields:
Serialnumber, Dateofpayment, Paymentamount, Sourcecode and Campaign.
My data has only two campaign types, BS12 and BS13.
I'm trying to plot a running ...
0
votes
1answer
84 views
SSRS MVC - Report Rendering Blank Page
I have implemented the ReportViewer in MVC. The only problem I'm having is that it renders a blank page. The toolbar is there, and the loading icon flashes for a second, but only a blank page is ...
0
votes
1answer
61 views
Column Color Change issue in SSRS
I have an issue here with a column operation. I have 2 DrillDown s for this particular Table.I have a column which returns 1 (Flag) on a particular date. This is the detailed row.
Now , on top of ...
1
vote
0answers
26 views
SSRS C# mapping RDL throws the error
I am mapping the Reports(RDL) with data sources through C#.
I am getting the Below error
The path of the item '' is not valid. The full path must be less than 260 characters long; other restrictions ...
2
votes
1answer
47 views
Clickthrough links not working in snapshot of linked report
I have a linked report, which is running fine. It is cached, there is a cache refresh-plan, that all works fine. But I would like to use it as a snapshot. So I enabled 'Render this report from a ...
1
vote
1answer
23 views
SSRS scheduling - time change issue
I have come upon with an issue for scheduling in SSRS. For instance, if I was to set a start time of a schedule to be at 8:00am from the client (in DST), SSRS will save it as 7:00am of the SSRS ...
0
votes
0answers
35 views
Problems setting HttpResponse Content to Office Open XML document created programatically
I have an ASP.Net, not MVC, Web App that I am maintaining, modifying. In it one of the things that we do is render reports as Word, Excel documents. SSRS 2008 is rendering these documents as non- ...
0
votes
1answer
31 views
Blank space Issue while navigating betwen the charts in one report
In ssrs, I have a report which has four charts in it.
The four charts has the same design.
when i preview it,the first chart is set to shown by default and
we have a link on first chart that should ...
0
votes
1answer
77 views
Total Row Count for Grouped Values in SSRS 2008
I have a report that displays names of all accounts and activities performed under each of them.
AccountName: ABC Corp
Activity: Installation
I want to group the AccountName and get the total ...
0
votes
0answers
41 views
How to set hidden parameter in a subscription
We have an SSRS 2008 (not R2) report, which returns data for 2 different customer class types in a single datatable.
I have a request to have this report sent via email automatically to the user as ...
2
votes
1answer
62 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 ...
