Hi @Thanasis,
Do you want to create a HTML table with lines around and align with column?
Modify your formula as below:
"<h3>Data Table HTML Email</h3>" & //This is optinal
"<strong> Items: </strong>" & //This is optinal
"<table width='100%' border='1' cellpadding='5' style='border:1px solid black; border-collapse:collapse'>" &
"<tr style='background-color:#efefef'>
<th>Title</th> <th> Price </th> <th> ID </th>
</tr>
<tr>" &
Concat('BU Permission List', //*Here is your data source*//
"<td>" & Title & " </td> //Here replacing with the column name in your list
<td>" & Price & " </td>
<td>" & ID & " </td>","</tr><tr>") &
"</table>"
The first two lines are optional, which is the header of the html table, you could start with the "<table width='100%'...
"<table width='100%' border='1' cellpadding='5' style='border:1px solid black; border-collapse:collapse'>" &
"<tr style='background-color:#efefef'>
<th>Title</th> <th> Price </th> <th> ID </th>
</tr>
<tr>" &
Concat('BU Permission List', //*Here is your data source*//
"<td>" & Title & " </td>
<td>" & Price & " </td>
<td>" & ID & " </td>","</tr><tr>") &
"</table>"
