Skip to content

Instantly share code, notes, and snippets.

@PowerPlatformBlogs
Created September 17, 2019 10:46
Show Gist options
  • Save PowerPlatformBlogs/09efa69f6432b627387d9849e7e49a25 to your computer and use it in GitHub Desktop.
Save PowerPlatformBlogs/09efa69f6432b627387d9849e7e49a25 to your computer and use it in GitHub Desktop.
Blog post HTML table
"<h3>Pending Approval</h3>" &
"<b> Action : "&DealAction.Text&" </b>" &
"<table width='100%' border='1' cellpadding='5' style='border:1px solid black; border-collapse:collapse'>" &
"<tr style='background-color:#efefef'>
<th>Value Date</th> <th> Currency </th> <th> Amount </th><th> hedge Accounting </th><th> Exposure Amount </th>
</tr>
</tr>
<tr>" &
Concat(Transactionslist,
"<td>" & ValueDate & " </td>
<td>" & ForeignCurr & " </td>
<td>" & ForeignAmount & " </td>
<td>" & HedgeAcc & " </td>
<td>" & Exposure & " </td>
","</tr><tr>") &
"</table>"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment