reporting-services

SSRS doesn't honor the CanGrow Property when Exporting to Excel

百般思念 提交于 2019-12-10 03:52:21
问题 I have a Table in an SSRS report. one of the Table Cells contains the Descriptions of Parts in an order. these descriptions could vary in length and for that reson i have set the "CanGrow" Property to True. when i try to export the report to Excel im expecting that if the text length would exceed the width of the Cell then the height of the cell would grow and the whole text would be shown. Unfortunately the SSRS Excel Generator keeps the height as is and so only the part of the text which

Null checkboxes are not checked on load of SSRS report in browser. Why?

久未见 提交于 2019-12-10 03:51:59
问题 I have made a report in SSRS which has 6 date parameters which can be null so has null checkboxes attached with it. I want that on opening the report the null checkboxes should be checked. They are checked when I open the report in the report builder but when I open it in the browser then the checkboxes are not checked. How can i make it possible to keep checkboxes checked at load of report, also in browser? 回答1: Check the parameters in your browser (I assume that you have sufficient

Can I create SSRS Reports in VS 2015 using SQL Server 2008 R2?

喜夏-厌秋 提交于 2019-12-10 03:45:55
问题 I'm new to SSRS. Recently upgraded my development environment from Visual Studio 2010 to Visual Studio 2015 Enterprise Edition. Currently my reports are made using Crystal Reports. I would like to to use SSRS and I'm trying find out my current environment will allow me to do it. So now I'm using Visual Studio 2015 and SQL Server 2008 R2. Can I create SSRS Reports using these two? If yes, how can I create it? I know how to create a report and publish it using the Business Intelligence

Possible to send SQL Reporting Services report in email format with a duplicate pdf attachment?

偶尔善良 提交于 2019-12-10 03:41:57
问题 Our system sends a "Daily Update" email via Reporting Services to all users each morning. If people are on a computer there's no issue. But, for users on the go, some mobile device email clients can't render the email. However, they can all render pdf files. So... the quick fix was to create two subscriptions for each user; one with the message in the body and one with the message in an attached pdf. This creates an annoying amount of friction. I'd love to send a single email with the message

Calculate percentage of total columns based on total column in SSRS Matrix

a 夏天 提交于 2019-12-10 03:34:15
问题 Looking to add a column in my SSRS Matrix which will give me the percentage from the total column in that row. I'm using the following expression, but keep getting 100% for my percentages (I'm assuming this is because the total is evaluated last, so it's just doing Total/Total? =FORMAT((Fields!ID.Value/SUM(Fields!ID.Value)), "P") The field ID is calcuted within SQL, not SSRS. For example Site | Value 1 | %1 | Value2 | %2 | Total 1 | 20 | 50% | 20 | 50% | 40 回答1: Probably this is happening

Border formatting of SSRS row group

一曲冷凌霜 提交于 2019-12-10 02:22:10
问题 This is my report. Above row contains a parent row group and a child row group. I have done border formatting of the report . I simply right click each Text box and gives border accordingly. But, I am not able to set border for entire Group. In group properties there is no option for Border. I do not want any border between the rows of a group. How I can do that? 回答1: Go inside the textboxes you want to remove the borders and remove the top and bottom border. When the group expands, you will

The Report Viewer Web Control requires a System.Web.UI.ScriptManager on the web form

三世轮回 提交于 2019-12-10 02:02:22
问题 I have tried to call a .rdl report created in SSRS to be called in an aspx page; but I got the following error: The Report Viewer Web Control requires a System.Web.UI.ScriptManager on the web form My Code is as follows, protected void Page_Load(object sender, EventArgs e) { //string query = Session["ClosedBugsResult1"].ToString(); if(!IsPostBack) ReportViewer1.ProcessingMode = ProcessingMode.Remote; ReportViewer1.ServerReport.ReportServerUrl = new Uri("http://localhost/reportserver");

Conditional Action in SSRS

大憨熊 提交于 2019-12-10 01:52:36
问题 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 = "0", "Report2","") This does not produce my desired result. It gives the textbox an action regardless of the condition result. Is there a 'No Action' or 'Cancel Action' value? 回答1: The null keyword in VB is Nothing : =IIf(Fields!MyTextbox.Value = "0", "Report2", Nothing) 来源: https://stackoverflow

SSRS only displaying first row

此生再无相见时 提交于 2019-12-10 01:21:22
问题 I have a very basic report in SSRS that displays a grid of data. The query correctly returns multiple rows but the report only displays the first row. The query is as simple as SELECT * FROM... I dont have any special formatting and the tablix is in the details part of the report, not header or footer by accident. What else can I check? 回答1: The tablix was missing a row group. 回答2: A similar issue is driving me nuts. I created a report manually from scratch in VS2012, threw a tablix on it and

Get list of reports from SSRS?

三世轮回 提交于 2019-12-10 00:58:40
问题 I've just started working with SSRS and so far I've been able to show reports in my Winforms app using the ReportViewer, by hard-coding the report path. I would like get a list of reports from SSRS so I can display them and let the user select which one they want to see. Is there a way to request the list of reports from SSRS? Thanks. 回答1: Yes, absolutely - Report Services has two well established web service interfaces. Check out this page here: Report Server Web Service and the links off it