I'm having a terrible time managing RDLC reports. I couldn't find any comprehensive tutorials in the internet and MSDN isn't as helpful as I wish it could have been either.
Particularly, I've been having a problem trying to get a particular table/matrix to appear based on a client's requirement. It goes like this.
In the DB I have two ...
How can I access the TD.SubNumber property and Numbers[] on RDLC? I keep getting #Error on my expressions "=Fields!TD.Value.SubNumber" and "=Fields!Numbers.Value(0)".
public class TestData
{
TestSubData tdata = new TestSubData();
public TestSubData TD
{
get { return tdata; }
set { tdata = value; }
}
...
I have a custom business object which overloads the .ToString() function. It also implements IFormattable.ToString, so I can define my own custom formats.
This approach seems to work everywhere in my app, except .rdlc reports. For example, I have a text field on a report with the following expression:
=Fields!MyField.Value.ToString("lr...
I am using Microsoft Report Viewer RDLC to show a Line Graph.
I need to give custom text like "Full", "Medium" etc instead of numbers as the y-aixs units.
Is it possible to do this using Microsoft Report Viewer?
...
i want to see output of my rdlc report as a continuous report, not page by page, in my browser using reportviewer (just like as in pdf files). i don't want to click "next page" button every time to see next page of the report in my browser.
...
Hi,
I want to use a listview as a data source of my Microsoft Report file which is having a rdlc extension ?
Is it possible ?
...
I have a customizable rdlc report where the user can choose which columns to show. All the columns are included in the report designer, and I use parameters to hide/show columns based on the user's choice. The report renders correctly, and only shows the selected columns, HOWEVER, the overall width of the report is the same as if all t...
I'm working on a report in Visual Studio 2008 with their Report tooling and I'm not sure how to approach this conceptually.
I have a report I want to generate. At the top of the report will be a bunch of information about a customer of our site (Name, Address, Phone). Then below will be a chart of the purchases that customer has each m...
I'm trying to format an RDLC report file in Visual Studio 2008 and I am having a formatting issue. I have a list at the bottom that contains a matrix that expands horizontally to the right. That pink box is just to visualize the problem I'm having.
When the report is rendered the matrix expands and instead of filling the pink box with ...
Hi everyone, I have a matrix and I need to add the money earned this year and past years. However, I must remove the money spent in past years. I must have the separate amount per year and the total of these amounts. This is what gives my matrix:
Year
= Fields!Year.value =formatnumber((sum(Fields!Results.Value))-(sum(iif(
...
Can a textbox's width in a local RDLC report be set dynamically using C#? I would like to auto size the horizontal width of the text box based on the data it contains.
...
Hi,
I am attempting to reference a sub-object in a field expression in a studio 2010 report.
This used to work in prior versions.
When account references another object with properties the following used to work.
=Fields!Account.Value.Name
(Name is a property of the child object, Account is the parent object)
The same expression syn...
I have a RDLC report which has some controls on the first page, which are inside a rectangle and which display ok. Beneath the rectangle, i have a matrix, which spans more than one page both in width and in height. I want the matrix to start rendering on the second page. If I enable "insert break before" on the matrix, there is an extra ...
I wanted to have filter option (like the one available in Excel sheet) in rdlc report column. is it possible and how ?
http://img62.imageshack.us/img62/2223/sample1n.png
i am trying in Visual studio 2005 and Microsoft report viewer.
kindly let me know the option for this or a work around for it.
Thanks
...
Hi,
How can I change Left and Top properties of Table control in a .rdlc file from code behind at Run-Time?
...
I've seen some examples, but trying to better understand how "Resource" files work, such as embedding images, reports, schemas, etc.
If building an application, I want to make sure everything is available when deployed, but for things like reports and schemas, I don't want anyone accidentally deleting, renaming, or otherwise mucking aro...
I'm trying to do something that I thought ought to be reasonably simple but I keep failing... Maybe I just need more coffee, but I thoguht i see if anyone else has solved the problem already.
I've got a report, it contains a pile off rows.
I want the row to show up grouped by one column called office.
I want the groups of offices sort...
I have an RDLC report based on custom Data sets used in a WPF application.
I have a Chart with a simple line chart.
IS there a way I can add a trendline to this RDLC report?
...
Hi,
i have read this article about custom report items(CRI)
http://msdn.microsoft.com/en-us/magazine/cc188686.aspx
The only problem is that CRI are only usable in reporting service and not in local reports. My question is it possible some how to use CRI in local reports( RDLC ). Also i am interested in which version of reporting service ...
I have some data coming from a custom dataset that look like the following example
Person Age
P1 20
P2 21
P3 30
P4 31
P5 40
And I want to develop a pie showing the age distribution against the age.
The point is that I want this Age to be shown in ranges. (20-29, 30-39, etc for example
So we have:
Slice wi...