I'm using the standalone Report Designer, and I'm trying to export my report to Excel with each order line item on a separate sheet. My report has orders, and each order has one or more line items. Basically, our customer wants to see separate reports on each tab showing the order header data and the line item data.
I've seen suggestions to use the Report Book feature, but we're using the standalone designer, and the report book feature seems to be a programmatic solution. I need a solution I can implement in the designer.
Thanks!
Hi everybody,
we need to print a report with following format:
Hi everybody (second try):
we need to print a report with format attached in file.
Header of Report
Group with Name A Subtotal of Group
First Subgroup of Group A Subtotal of Subgroup
First Subgroup of subgroup of Group A Subtotal of Subsubgroup
Second Subgroup of subgroup of Group A Subtotal of Subsubgroup
Second Subgroup of Group A Subtotal of Subgroup
Group with Name B Subtotal of Group
First Subgroup of Group B Subtotal of Subgroup
...
Total Total
In other words, we need beginning of a subgroup can be bellow parent group. Is it possible?
Very thanks
I have group its header print on every page if the detail will be extended to more pages.
But, I need to do conditional formatting or binding to check if group header is repeated in this page (this group data displayed in previous page or not) or not.
Example :
Product Category 1 Group Header
Product 1 Detail
Product 2 Detail
Product Category 1 Group Header
Product 7 Detail
Product Category 2 Group Header
Product 3 Detail
Product 4 Detail
Product Category 3 Group Header
Product 5 Detail
Product 6 Detail
I have created one report in standalone report designer (Report.trdp), using object data source (my custom CLR type). It´s possible to programmatically load the report file and set the data source like a report created in Visual Studio (Report.cs)?
Idea of code:
Report reportFromFile = new Report(@"c:\temp\Report.trdp");
reportFromFile.DataSource = _repository.Query().ToList();
Regards,
André
Hi,
Cam Anyone please give me code example on how to assign report to HTML5 report viewerin ASP.Net.
For example, report1.trdp, i want to assign it to reportviewer1 in asp.net. And if possible how to also assign data source to report1.trdb.
Please help on this.
Many thanks,
Omar
I have a map which I need to put points very close to each other. The distance from each other should be less than 1 meter. The points must also overlap each other. However, I'm facing an issue which I cannot find a good logic on how it works.
The attached picture consists of 10 points with the same longitude, but only different latitude. Each has unique Id field. To each point has been added 0.0001 latitude (which translates as roughly 1.12meters). My issue is that points 1,2,5,6,9,10 look great. However 3,4 and 7,8 are grouped/combined/on top of each other. How is it determined which to group and how?
A little bit more relevant information:
I'm using PointMapSeries.
MarketMaxSize, MarketMinSize, MarketSize is set to 1mm/1px
The seriesGroups groups by Fields.Id and so does the geoLocationGroup.
My dataclass has only Lat, Long & id.
I can provide more information if needed.
Hello,
I have a text box on a form that I want to show when either or both of two conditions are true or selected in the UI. Visible is set to false.
Basically, when CustAcctHold is checked in the UI, I want to show the HOLD text box.
Also, if CustAcctTerms is set in the UI to HOLD, I want to show the HOLD text box.
I have tried = IsNull(Fields.CustAcctHold.Ticks, 0) with Operator = and Value 1 which I found on another thread, still did not work. Also tried, = IIf(IsNull(Fields.CustAcctHold, 0)= 0, 0,1)
I cannot figure out a string an expression that will make this work. Any help would be greatly appreciated!
Hi,
I'm using Telerik Reporting Tools version 3.44.1.0 on Visual Studio 2017.
I converted a few of my report parameter data sources from Current Data Sources to Report Data Sources by creating a class as described here (these are data sources that'll be used across multiple reports):
https://docs.telerik.com/reporting/data-source-how-to-add-project-data-source.
I used the Wizard to create the data source and the query works within the Wizard, but once I try to open the report I get the "ConnectionString property has not been initialized" error message.
I've verified the connection string is present in the app.config and I was using the same connection string within the Current Data Sources.
Example below:
namespace ReportLibrary
{
public partial class ExchangeDateDataSource : Telerik.Reporting.SqlDataSource
{
private void InitializeComponent()
{
//
// ExchangeDateDataSource
//
this.ConnectionString = "Reports.Properties.Settings.IOConnection";
this.SelectCommand = "dbo.uspSelectExchangeRatesLkUp";
this.SelectCommandType = Telerik.Reporting.SqlDataSourceCommandType.StoredProcedure;
}
}
}
Anything I'm doing wrong? Thanks.