Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
New Feature: You can now embed a sub‑report directly inside a table group row. Use the following syntax:
&=subreport{ReportName=YourReportName; Parameter1Name=Parameter1Value; Parameter2Name=Parameter2Value; …}
A sub‑report is a separate report that is rendered inside a parent report. This capability is useful when you need to display related data (e.g., order details) for each group row in a master table.
Below is a screenshot of a master‑detail report where the sub‑report Sales Order Detail is placed in the group row of the Sales Orders table.

Explanation
| Item | Value |
|---|---|
| Sub‑Report Name | Sales Order Detail |
| Parameter | SalesOrderNumber |
| Parameter Value | EmpSalesDetail.SalesOrderNumber |
The sub‑report receives the current row’s SalesOrderNumber and renders the matching order lines.
&=subreport{
ReportName=YourReportName;
Parameter1Name=Parameter1Value;
Parameter2Name=Parameter2Value;
…
}
.xlsx extension).Tip: Separate each name/value pair with a semicolon (
;). Do not include spaces around the equals sign.
| # | Restriction | Reason |
|---|---|---|
| 1 | The sub‑report must be created with the Aspose.Cells Reporting Services Designer tool. | Guarantees compatibility with the embedding engine. |
| 2 | Sub‑reports can only be placed inside a table group row. The group row cannot contain any other elements (e.g., text boxes, images). | Prevents layout conflicts and ensures a clean rendering pipeline. |
| 3 | Embedding a sub‑report in detail rows, footer rows, or header rows is not supported. | These rows are rendered differently and do not provide a stable container for a nested report. |
| 4 | Nesting depth is limited to one level – a sub‑report cannot itself contain another embedded sub‑report. | Current engine limitation; future releases may lift this restriction. |
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.