reportingservices-2005

SQL reporting services report not showing date in correct format

Hi, i have built a reporting services report off SQL server 2005 and am having trouble getting the date to format correctly in a stand-alone textbox. The code i am using is as follows: ="Date: " & FormatDateTime(Parameters!date.Value, 2)) -- According to MSDN it should work off my systems culture when set to '2' however it is not. C...

Displaying Aggregates Across Overlapping Ranges in a Reporting Services Matrix

I'm having a problem displaying the values for a range of dates in a matrix row. I would like to have a matrix display the following data: Trial Existing Total Yesterday 3 1 4 This Week 5 3 8 Last Week 18 5 23 Month to Date 26 9 35 Last Month 32 20 52 I thought th...

SSRS 2005 treenode as report parameter

Hi, I have report data that belongs to regions in a tree (with infinite levels). What I would want is to allow the user to choose a region (node in the tree), and pass that parameter on to my stored procedure, which will collect appropriate data. I have created some reports with drill-down matrices, which sort of does what I want. I ne...

Missing report in History?

I have a scheduled SSRS report that runs at 5am and takes 5s to process, the output of this task normally appears in the History tab. This morning the report is not in the history tab! A manually run report does appear, and on checking the actions for the morning, SQL5 says that the action ran successfully. My question is this; Has any o...

How can I display two rows worth of data on one line side-by-side in Report Designer?

I am using SQL Server Reporting Services 2005, and I'm developing a report in Report Designer/Business Intelligence Studio. Right now I have a normal-looking table that displays data like this: ---------------- | A | B | C | ---------------- | A1 | B1 | C1 | ---------------- | A2 | B2 | C2 | ---------------- | A3 | B3 | C3 | --------...

SQL Server Reporting Services 2005 - Problem Rendering HTML in Reports

Hi all, I have been working on as Asp.net Application which is displaying SSRS 2005 reports in Local mode using Asp.net ReportViewer control. We have several DB fields having HTML data is saved. We need to display these fields in RDL .But 2005 RDL is not suporting html formatted data in Report textboxes.It is displaying raw html text c...

Using the Visual Studio XML Editor on RDL files

When using Visual Studio to edit Reporting Services *.rdl files, the default designer used is from the "Microsoft SQL Server Reporting Services Designers" installed product. When viewing the RDL code, this code is displayed as plain text and I want to take advantage of the XML Editor in visual studio. Linking the *.rdl extension to the...

Version control for ReportingServices

How would go about implementing version control for Msft Reporting Services? Ideally we would like to have some sort of way of getting artifacts into our Subversion repository. We can maintain the report definition files into the repos, but is there a better way of going about keeping a RS solution under version control? ...

How to use Floor/Ceiling in a ReportModel expression field?

I'm working in an SSRS 2005 Report Model Project. I want to create an expression field on a ReportModel that does the same as this C# method: private static int GetClosestWholeNumberToward0(double delta) { return (int) (delta > 0 ? Math.Ceiling(delta) : Math.Floor(delta)); } I tried this: IF(delta > 0, Ceiling(delta), Floor(delta...

SSRS 2005 How-to: Headers for groups within groups?

It seems pretty straight forward to get what I want. The data details display correctly but I can't get the headers to cooperate. I have n number of clients with their activity in the report. I want the client name in the header, and then the column names below that. But I either get columns repeating before every entry or no client na...

How to use HTML entities in an SSRS report?

In a SQL 2005 Report Server Project, how do you put an HTML entity (such as & or ) in the value of a column's header Textbox? ...

Sql reporting Services - Programmatically setting a datasource?

I've got a bunch of reports deployed as RDL's to a SSRS. Because of high security requirements, the db passwords change very frequently. It's become a huge task to keep up with the changes and having to modify dozens upon dozens of reports. This leads to my question... Is it possible to programmatically set a data source or a connection...

How to Reference a VB Function in Reporting Services Grouping

Good Morning, I'm using Reporting Services 2005 to produce a one-time report that will group records according to the PLANCODE field. I've created the following VB function: Function PayorGroup (ByVal ipc as String) as String set ipc = PLANCODE Select Case ipc Case 'M01' to 'M99' PayorGroup = "Medicare" Case 'A01' to 'A99' PayorGroup ...

Data driven subscription cascading parameters

I am trying to setup a data-driven subscription and it works fine except when 2 of the parameters are set to take dynamic values instead of static ones. The strucutre is basically Param1 -> read from database Param2 -> read from database Param3s -> read from database Param3 -> split Param3s (multivalued parameter, allowed val...

Reporting Services Grouping

I'm new in Reporting services and got little confused. in the screen shot you can see what I did. I have two groups, the inner is by employe name, and the outer is by Month. Now I want to calculate the sum of the hours for example and it doesn't works. In the textbox with the value of 755.434 the formula is : =Sum(Fields!time_differ...

SQL Server reporting service export to xml function is not working.

I am having report which are having builtin functionality of SQL Sever reporting service 2005 like 'Export to CSV','Export to XML etc. When i use this functionlity its working fine on IE. The Export functionality is works fine its is exporting file name like MX3_ Enrollment-User Enrollment.xml but it is not working in firefox. When same...

Forcing a SQL Reporting Services 2005 table to show a certain number of rows

I've got a SQL Reporting Services 2005 report that includes a table on the first page. I have enough room on the first page to show the first 5 items from a list. If there are more than 5 items, I want the list to continue to another table on the second page of the report. I also want the tables to have a fixed number of rows. For examp...

I want to use SQL Server reporting service in Windows application on .NET?

hello freinds i am new in ssrs i want some sugeestiion from You can i use ssrs in windows application in .net if yes then please tell me? Thanks in advance ...

Sql Reporting Services 2005 continue a long string from one textbox to another textbox

I've got a SQL Reporting Services 2005 report that includes a textbox on the first page. The string input for the textbox can be very large and include newlines. The textbox size is fixed and another textbox is included on the second page of the report to handle any spillover text that didn't fit in the first page's textbox. If the secon...

issues with font displaying

Hi, I'm having issues with font displaying in my report. The report has a header and 2 table in it. I set the font in the header and both 2 table to FontStyle-Normal, FontFamily-Times New Roman, FontSize- 8.5pt for Header, 6pt in one table, 6pt and 5.5pt in the other table. FontWeight- Normal The report font settings looked correct ...