I'm trying to build a screen where the user creates a collection called "SelectedItems" (via checking boxes in a gallery) and then can send an email with an html table. One such field in the collection is an url.
How can make that particular field clickable (e.g., navigate the user after clicking on the link)? Below is my code. Thank you for your help!
"<table border='1' width='100%' border='1' cellpadding='5' style='border:1px solid black; border-collapse:collapse'>" &
"<tr style='text-align:center;font-size:25px;background-color:#efefef'>
<th>Title</th>
<th>Description</th>
<th>Link</th>" &
"<tbody>" &
Concat(SelectedItems,
"<tr>
<td style='font-size:18px''>" & Title & "</td>
<td style='font-size:18px''>" & Description & "</td>
<td style='font-size:18px'')>" & 'Link' & "</td>
</tr>") &
"</tbody></table>"