ssrs-2008

Partial sum in SSRS 2008 R2

断了今生、忘了曾经 提交于 2019-12-11 18:06:24
问题 I've a column with values for each month of the year. Then in parameters of my report i would be able to set the month. SSRS should return this column with values for each month of the year (like if there's no parameter) but the sum at the bottom of this column should return the sum of the value from the beginning of the year to the selected month. Is it possible? 回答1: Yes. If I'm understanding correctly, you want something like the image below: Assuming your MonthYear column is a DateTime

Creating hierarchical/custom model in SSRS

折月煮酒 提交于 2019-12-11 17:50:11
问题 I am generating a report where I have to bind a hierarchical structure. 1) I have to show teachers 1 by 1 in a row but following each teacher, there should be multiple students listed in another table type structure and after the listing of students 2) It is having another table type structure showing blah blah information Now as per surfing internet i have found that i can achieve this result by creating a custom model like this: I will have a custom class public class customDataSet { List

Report viewer throws out of memory exception error while exporting to excel

微笑、不失礼 提交于 2019-12-11 17:24:37
问题 Out of memory exception thrown - I tried to export a large record from report viewer into excel in windows forms. I have applied grouping for page breaks since excel does not allow above 65535 rows. Below expression is used for Group On expression, =Int((RowNumber(Nothing))/10000) Page Break at end Checkbox is enabled for this grouping while exporting by clicking on the default export option available in report viewer control. But results in out of memory exception thrown. Am i doing right?

How to pass multiple values to drilldown report?

可紊 提交于 2019-12-11 16:22:13
问题 I m using sql 2008. I have one matrix on the report. Data will be as follow Maths English Science Gender 5 3 4 Male 1 2 2 Female 4 1 2 Count shows the number of students passed in respective subjects.Data is grouped by gender When user click on count it will be redirect to sub report. Now i want to pass Students Ids to sub report to show that students only. I have tried Join, Split but those functions can be used with parameters only. Not with Fields. Basically i want to pass string of comma

Report Viewer Doesn't Show report created with Sql Server Reporting Services

坚强是说给别人听的谎言 提交于 2019-12-11 14:53:22
问题 I created some reports in Sql Server Reporting Services, and deployed them in my local report server. When I type URL : http://MyreportServer/ReportServer in my browser I can see my deployed reports, and when clicks on reports links they will show correctly. In my web page I have a report viewer and set report server and report location for it to one of the deployed reports. When I run the project it does not show any thing and the report viewer seems to be disabled. How I can solve this

Cannot see all the labels on the x asis in an ssrs column chart

吃可爱长大的小学妹 提交于 2019-12-11 14:29:42
问题 I have a column graph as shown below. It shows only a few x axis labels. I want it to show all the x axis labels. Is there a way this can be done ? I tried changing the size of the chart and this doesnt work 回答1: Duplicate question: SSRS chart does not show all labels on Horizontal access Best answer was: To fix this, under the "Chart Axis" properties set the Interval value to "=1". Then all the labels will be shown 来源: https://stackoverflow.com/questions/21056447/cannot-see-all-the-labels-on

Error when trying to view SSRS Subscriptions in Report manager Url

懵懂的女人 提交于 2019-12-11 14:21:24
问题 Our report server database was moved to a new environment. Subscriptions work well with most users/owners. However, we have issues with one not working. changes were made with the query below: DECLARE @OldUserID uniqueidentifier DECLARE @NewUserID uniqueidentifier SELECT @OldUserID = UserID FROM dbo.Users WHERE UserName = 'DOMAINA\OldUser' SELECT @NewUserID = UserID FROM dbo.Users WHERE UserName = 'DOMAINA\NewUser' UPDATE dbo.Subscriptions SET OwnerID = @NewUserID WHERE OwnerID = @OldUserID

how to include an ssrs expression and an indicator in the same cell

谁说我不能喝 提交于 2019-12-11 12:46:21
问题 I would like to include an expression and an ssrs indicator based on the same expression in the same cell of a table. I have tried doing the approach in the link shown : http://social.msdn.microsoft.com/Forums/en-US/f5f19834-ba37-410c-bb7e-179807dfefea/indicator-value-in-same-cell?forum=sqlreportingservices but the borders for that cell become invisible when I preview the report. Please let me know if there is any other good way to do this which doesnt effect the borders. my expression looks

How to know if a report is already printed in SSRS?

≡放荡痞女 提交于 2019-12-11 12:33:32
问题 The user of my report would like to know if the report has already been printed? If the report has already been printed then the user would like to see a message that the report has already been printed previously on the report next time the report is generated. what is the best way to achieve this? Thanks in advance. 回答1: There is no official documentation on how to achieve this, but I there could be a way of doing this. The ExecutionLogStorage table contains information about reports

SSRS report repeat table for every parameter value

核能气质少年 提交于 2019-12-11 12:06:07
问题 Guys sorry for the general question here but I have been looking on the internet and cant find a solution. I have an SSRS report. There is one Parameter user must put in before running, @Location. In the query its specified to only return results where that location is matched. I.E. where Company.location = @location The results are displayed in a table. This all works fine, but I want to change the parameter to contain multiple values.....and then repeat the table for every location the user