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