Format rows in child table as columns in a PDF report

Hi all,

Trying to create a pdf report that has the parent details at the top of the report and the child details in a columns.?

0 2 330
2 REPLIES 2

Hi @timinechuca Have you had a look at the “Order Capture” sample app? It has templates for sending reports.
https://www.appsheet.com/samples/An-app-for-managing-customers-products-and-orders?appGuidString=245...

@timinechuca so if your triggering the workflow from the parent table you can just use

<<[ColumnName]>>

To also include child table data you’re going to have to use a either table with a START condition such as

<<START: [Related Child Table]]>>

or

<<START: Select(ChildTable[Column],…

A final way, assuming you didn’t need a table of child records would be to create a formula for each cell from the child table e.g.

<<Any(Select(ChildTable[ColumnA],[ColumnA]=“foo”))>>

Simon@1minManager.com

Top Labels in this Space