Hello,
Appreciate some assistance on this.
I am building a report (Shipping data) in my powerapps using an html template etc.
I reached a point where i have to generate a table that hold this information:
<table>
<tr>
<td>No of Packages</td>
<td>Description of Contents</td>
<td>Cargo value / est. price ($)</td>
<td>Gross Weight in Kg</td>
<td>Measurements (LXWXH) in cm</td>
</tr>
<tr>
//dynamic data
</tr>
</table
I have the shipment information stored in a SP list called Shipments
The shipment details are stored in a SP list called Shipment Details with RefID column the ID of the Shipment.
The client requires to view this information in a screen before sending it for print/pdf (which is something i can handle later on.
I am using an HTML Text control.
Not sure how to perform this action.
Thanks.