Blog post HTML table
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"<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