Hello,
I'm using the code below which is working fine but I would like to add a header to separate the two collections but so far I have only been able to add this for the first collection. When I add a header for the second it's populated in the last row of the last column.
I know this is something pretty straight forward and have tried different combination but am now throwing in the towel. Any help would be much appreciated.
Office365Outlook.SendEmailV2("email","Stock",
"<table width='100%' border='1' cellpadding='5' style='border:1px solid black; border-collapse:collapse'>" &
"<tr style='background-color:#efefef'>
<th>Description</th>
<th>Device</th>
<th>Current Level</th>
</tr>" &
Concat(colTonerStock,
"<tr>
<td>" & Title & " </td>
<td>" & Device & " </td>
<td>" & CurrentLevel & " </td>
</tr>")&
"<table width='100%' border='1' cellpadding='5' style='border:1px solid black; border-collapse:collapse'>" &
"<tr style='background-color:#efefef'>
<th>Description</th>
<th>Device</th>
<th>Current Level</th>
</tr>" &
Concat(colWasteStock,
"<tr>
<td>" & Title & " </td>
<td>" & Device & " </td>
<td>" & CurrentLevel & " </td>
</tr>"))
Solved! Go to Solution.
I don't believe an HTML table can have two headers. You could add the header as an additional row between the two collections or split the HTML into two tables with two headers, one for each collection. Your code below will work, you just need to add a '</Table>' to close off the first table before you start the second one.
I don't believe an HTML table can have two headers. You could add the header as an additional row between the two collections or split the HTML into two tables with two headers, one for each collection. Your code below will work, you just need to add a '</Table>' to close off the first table before you start the second one.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
User | Count |
---|---|
252 | |
122 | |
84 | |
84 | |
67 |