@Ulisses
You'll need to use CONCAT to change the items in the column into a text string.
Here's how to show all items on separate rows of the table.
"<tr>
<td>Embalmento</td>"&
Concat(ListBoxCoberturasComplementares.SelectedItems, "<td>&your_column_name&</td>")&"
</tr>"
Or you could show all items inside one row. Its your choice
"<tr>
<td>Embalmento</td>
<td>"&Concat(ListBoxCoberturasComplementares.SelectedItems, your_column_name&"<br>")&"</td>
</tr>"
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."