reporting-services

Is it possible to put the grouping field on top of the table in SSRS?

北慕城南 提交于 2019-12-11 10:28:14
问题 Is it possible to do this kind of layout in SSRS? 2012/11/01 ----------------------------- | Order # | Product | Qty | ----------------------------- | | Mouse | 3 | | 1 | Keyboard | 2 | | | CPU | 5 | ----------------------------- | | Mouse | 1 | | 2 | Keyboard | 7 | | | Lan Cable | 7 | ----------------------------- 2012/11/02 ----------------------------- | Order # | Product | Qty | ----------------------------- | | Mouse | 2 | | | Keyboard | 8 | | 3 | Memory | 4 | | | CPU | 2 | | | Battery |

SSRS: Horizontal alignment on a group

我是研究僧i 提交于 2019-12-11 10:07:06
问题 On my dataset I select information from four different years sorted by date and how many subscriptions I had on said date, which looks something like this: Date Year Subs Day 15/09/2014 2015 57 1 16/09/2014 2015 18 2 17/09/2014 2015 16 3 14/09/2015 2016 10 1 15/09/2015 2016 45 2 16/09/2015 2016 28 3 12/09/2016 2017 32 1 13/09/2016 2017 11 2 14/09/2016 2017 68 3 24/08/2017 2018 23 1 25/08/2017 2018 53 2 26/08/2017 2018 13 3 What I'm trying to do is create an 'Year' Column Group to align them

SSRS Report Manager set default zoom level

两盒软妹~` 提交于 2019-12-11 09:58:06
问题 I have deployed around 40 report parts to my reporting server which are all working correctly. The problem is my zoom is default 100 for all of them, I want a number of them to default to 75. I have tried creating a portal with links to all report parts and using the &rc:Zoom=75 on the end of the URL for the link but it still defaults to 100. Can anyone suggest how I can achieve what I want? 回答1: Instead of going to : http://mysqlservername/Reports/ and getting the full URL from here (plus

Line Height in SSRS

谁都会走 提交于 2019-12-11 09:44:51
问题 Is there a way to adjust the line height in SSRS? I have a requirement on a legal document to have a bigger line height. From what I have read, the Textbox.LineHeight property only affects html. I have converted the text inside the textbox to html, set the LineHeight property, but nothing changed. I also tried adding custom CSS to the report (using old school line-height: {x} pt; inside a style tag), but to no avail - that isn't supported in the SSRS environment. Here is an example what I

SSRS Printing without showind Print Dialog

折月煮酒 提交于 2019-12-11 09:43:42
问题 I am rendering an SSRS datareport. I want to print it directly, without showing it on screen and without even showing the printer dialogue. I can send it to the printer without showing on screen but it displays the Print Dialog. How to avoid this? Thanks 回答1: Make use of threading here. Once the print command is given just start a thread which will simulate the key press required to close the window.. Here is a sample code which closes a dialogue box which requires enter key to be pressed.

Create view of Data Set in SSRS

情到浓时终转凉″ 提交于 2019-12-11 09:38:28
问题 I hope this isn't too simple, but I have a report retrieves rows using this layout: AccountType AccountHolder AccountBalance ----------- ------------- -------------- SVG A $ 100.00 LNS A $ 300.00 HEL A $ 150.00 SVG B $ 50.00 SVG C $ 900.00 HEL C $ 350.00 The report summarizes the data above in a variety of ways, however I've been asked to provide a Sum of AccountBalances by AccountHolder for all of their accounts, essentially resulting in the following output: AccountHolder AccountBalance ---

SSRS How to define parameters as 7 days ago plus 1 hour

吃可爱长大的小学妹 提交于 2019-12-11 09:27:47
问题 I have a report made using SSRS and SQL Server and I have set a StartDate and EndDate parameters for the report. I have set the default value for StartDate as =DateAdd("D", -7, Today()) I have set the default value for EndDate as =DateAdd("H", 1, Today()) How can I add 1 hour to the StartDate Parameter? I've tried =DateAdd("H", 1, (DateAdd("D", -7, Today()))) Would that work? I'm currently testing it but the report usually takes 6 hours to run. 回答1: Do the date math in hours instead of days.

Forms authentication in ssrs 2008 r2?

我的梦境 提交于 2019-12-11 09:21:35
问题 Can anybody explain the detailed step by step procedure for form authentication in sql reporting services 2008 r2 .I am new to ssrs ,I need details about how to configure in rsreportserver,web.config files and how to write coding for authentication for ssrs .Is there any special procedure for ssrs forms authentication and how to verify in C# code and where to redirect ? 回答1: See these links for some examples & other information from Microsoft: http://msdn.microsoft.com/en-us/library/xdt4thhy

Is there a way to change the NULL text of a NULLABLE report parameter to a CUSTOM TEXT

故事扮演 提交于 2019-12-11 09:15:57
问题 Is there a way to change the NULL texts of a NULLABLE report parameter to CUSTOM TEXTS like is shown in folloing image .... ? I have read this question https://stackoverflow.com/questions/17232432/ssrs-2005-how-to-change-the-label-of-the-null-checkbox-of-a-datepicker And the proposed solution in this forum http://social.msdn.microsoft.com/Forums/sqlserver/en-US/879b0015-b053-40de-b97d-620fc283e542/how-to-change-null-label-of-the-checkbox-in-the-parameter-area So I decided to create a Boolean

How to reset a page number in SSRS report

こ雲淡風輕ζ 提交于 2019-12-11 09:09:22
问题 I create a report using SSRS reports to show many different kind of information, I use a multiple headers and many tablix that will be used for each page on report. My page number is not based on group (I use the page number generated by SSRS because I use to put it in the header). My problem is how to reset a number page for each header. 回答1: There are (at least) two options: The first uses page names, described here. The other involves subtracting an offset from the buildin function,