reporting-services

How to Display beyond 24 hrs in SSRS 2008 in HH:MM:SS format

与世无争的帅哥 提交于 2019-12-29 09:28:28
问题 I have a report in SSRS 2008 that pulls data from a table with a column, TotalTime that is an Integer value in seconds. To display is as time I use this in the expression: =Format(DateAdd("s", Fields!TotalTime.Value, "00:00:00"), "HH:mm:ss") (got that from here: Display Seconds Count in HH:MM:SS format in SSRS 2008) Now, when the value goes beyond 24 hrs it does kind of a "module" value. I mean this: if the value would be 29 hrs, instead of displaying 29:00:00 it will display 05:00:00. If the

Report footer is not exported to Excel

廉价感情. 提交于 2019-12-29 08:27:09
问题 I am using SQL Server Reporting Services 2008 for reporting. When we export the report to Excel, the footer image or textbox is not exported. Header image is getting exported successfully. Does anybody know a solution for this? 回答1: Jon is correct they are exported but on opening the file you wont automatically see them as they are not displayed in "Normal" view, in 2007 switch to "Page Layout" view. not sure what its called in other versions of excel. Note: You also might want to read this

SSRS csv export with comma in the column header names

青春壹個敷衍的年華 提交于 2019-12-29 07:45:08
问题 By default, csv takes the text box name as the csv header name for the columns. The text box does not allow a space. How do I make a different header than the text box for the csv? Is there a way to display comma in the header when exported to csv? Note : The solution has to be only for one report; not global. 回答1: The column name comes from the DataElementName property, or if that is blank, the Name property. Unfortunatly, neither allow commas or quoting. There is a blog post here: http:/

How can I add the French trademark symbol (MD)?

ⅰ亾dé卋堺 提交于 2019-12-29 07:31:37
问题 I have a report that needs to be output in either English or French (based on a field value). I have copied the text from the Word document to the SSRS package, and all French characters show as they should except MD (marque déposée). This should show similar to superscript "MD", but it shows as normal script "MD". Is there a library of French symbols that I can add, or is there a way to format it so that it "appears" right? I have tried: adding MD to a separate textbox and formatting it so

How can I add the French trademark symbol (MD)?

℡╲_俬逩灬. 提交于 2019-12-29 07:31:34
问题 I have a report that needs to be output in either English or French (based on a field value). I have copied the text from the Word document to the SSRS package, and all French characters show as they should except MD (marque déposée). This should show similar to superscript "MD", but it shows as normal script "MD". Is there a library of French symbols that I can add, or is there a way to format it so that it "appears" right? I have tried: adding MD to a separate textbox and formatting it so

The request failed with HTTP status 401: Unauthorized IN SSRS

╄→尐↘猪︶ㄣ 提交于 2019-12-29 06:55:21
问题 My Application is in Asp.Net MVC3 coded in C# , i have a SSRS solution in SQL Server Business Intelligence Developement Studio in Visual Studio 2008 , I'm calling the SSRS report through my Asp.Net MVC3 application. My application was running fine a couple of days back but suddenly i'm getting an error as follows: My Error : The request failed with HTTP status 401: Unauthorized. My Attempts My SSRS reports are deployed on my local server . I have my credential properly set in the datasource

String aggregation in SSRS 2005

好久不见. 提交于 2019-12-29 04:45:11
问题 Using BIDS 2005 to create rdl reports. I want to have the report aggregate all the strings in a data group. I was looking for something along the lines of Concatenate(Fields!CompanyName.Value, ","), or Join, or equivalent. But it would have to iterate over all the records in the scope given. I am creating a report of a user's activities in a calendar format (looking like the google's month view calendar) But if a user has multiple activities on a single day I want all of them to show up in

Can I send SSRS custom subscription e-mails?

牧云@^-^@ 提交于 2019-12-29 02:08:28
问题 I need to send some e-mails containing a SSRS report to a list of persons, representing the amount of work items they have left until a certain date. What I would like to do is to send each person in the list, the customized report that reflects his progress, so my question is: can I send different reports to the persons in the list (like sending it's e-mail address as a parameter to the report), or can I only send the same report to all people in the list? Thanks! 回答1: If you do not have

Automatically print SSRS report?

℡╲_俬逩灬. 提交于 2019-12-28 13:34:24
问题 Is there a way to automatically print a SQL Server Reporting services (2005) report? EDIT: We needed to print a SSRS report at a network printer programmatically. Specifically, we wanted to fire this off from a stored procedure. We are currently using likeabanshee's method, and it is working. However, we would like something more managed, without the dependency on Adobe Acrobat and xp_cmdshell. We are looking into this method suggested by Paul G. 回答1: You should be able to make that happen

SSRS: How to display a hyperlink in sql services reporting

痞子三分冷 提交于 2019-12-28 12:28:41
问题 I'm using SSRS for 2008 R2 to display some data-generated reports. In my database table, I have a cell called Remarks. It usually contains links to software defects. The cell is nvarchar(max) and I've added links such as http://stackoverflow.com. However, when the report is displayed, the link is not clickable as expected. What do I need to do make the link clickable? Many thanks for any help. J. 回答1: Two approaches, the first assumes data is pre-formatted as a URL (e.g. https://www.google