Hi,
I've created a report whose filter label may change. I'm passing the filter label in as a parameter but when I go to set the label text, the filter label is not appearing when the page first opens and the report includes all data. When I change the filter or dates and the report refreshes, the filter label is then displayed. I'm setting the label to the parameter.FilterLabel.Value but again, it doesn't display until the report is refreshed after the initial report is displayed after opening the page. Any ideas on how to get this filter label to display when the page opens?
I've include a pic of what the filter looks like when the page first opens and after a filter is selected. I'm passing the string 'Department' in as a parameter.
Thanks,
Jim
I was successfully running Telerik Reporting R2 2016 (Telerik_Reporting_R2_2016_SP1_10_1_16_615_DEV.) in my VS 2015. Recently I upgraded from VS 2015 to 2017 . Now I am unable to edit/create new reports in VS 2017 Report Designer as the Telerik Reporting Toolbox and Menu items are missing in VS 2017.
I can open the report file in Report Designer though.

Hi,
I am creating the report with standalone designer.
My sample datasource will be like this below,
Data Source
-----------
Name,QtyValue,DateTime
S001,100,2018-05-01
S001,200,2018-05-02
S001,300,2018-05-03
S001,50,2018-05-04
S001,250,2018-05-05
S001,100,2018-05-06
S002,200,2018-05-02
S002,30,2018-05-04
S002,100,2018-05-05
In my report group footer, I would like to display the
Maximum/Minimum Qtyvalue and the DateTime value for that maximum value.
I tried to use the expression
IIF(Fields.QtyValue = Max(Fields.QtyValue), Fields.DateTime, "")
It didn't work. Can you guys please advise me how to achieve.
Expected
---------
Name: S001
Max Min
Value Date Value Date
300 2018-05-03 50 2018-05-04
Actual
-------
Name: S001
Max Min
Value Date Value Date
300 50
Thanks in advance.

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 ReportGroup 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 SubgroupGroup 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é