5 Answers, 1 is accepted
To check for the report's last line you can use the following expression:
= Fields.Descr=Exec("MyReportName",Last(Fields.Descr))
Give it a try and let us know how it goes. If you need additional assistance on the topic we will appreciate if you elaborate further on your scenario.
Peter
the Telerik team
Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!
The report engine is data driven thus our suggestion is to access the last textbox's data field as shown in the following example:
=Exec("MyReportName",Last(Fields.MyDataField)
You may find useful the Functions help article.
Peter
the Telerik team
Q2’11 SP1 of Telerik Reporting is available for download (see what's new). Get it today.
The textbox I am using has the following value:
[=RunningValue("txtPaymentAmountTotal",Fields.PaymentAmountTotal)]
It gives me the running total for each row.
However, I want to pull the last value (from txtPaymentAmountTotal) on each page to display it in the page footer to show the running total on a per-page basis.
Please check out the suggested approach in Running Total forum thread you have opened.
Kind regards,Peter
the Telerik team
Q2’11 SP1 of Telerik Reporting is available for download (see what's new). Get it today.