Happy Saturday!
Getting more involved with Power Automate at work. I was able to create a simple flow that generate a PDF from HTML using concat(). What be the best approach to retrieve the additional fields.
- Title
- Customer
- Contact
- State
- Price
- SignedDate
<table align="center">
<thead>
<tr>
<th style="background-color:#01465d;color: ;" colspan="2.5"></th>
</tr>
</thead>
<tbody>
<tr>
<th style="background-color:#93c7c8;color: ;">Title</th>
<th style="background-color:#93c7c8;color: ;">Customer</th>
</tr>
<tr>
<td style="background-color:">Contact</td>
<td style="background-color:">State</td>
</tr>
<tr>
<td style="background-color:">Price</td>
<td style="background-color:">SignedDate</td>
I hope l've explained myself clearly. Thank you in advance!