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>"
Thank you! I'm starting to play with HTML tables in Power Apps and needed exactly this information. I didn't want to see the entire link (which made the other columns small), only a hyperlink.
Thank you! It worked! For the benefit of other html noobs, here is the whole line with your code inserted.
<td style='font-size:18px''>" & "<a href=""" & 'Link' & """>" & 'Link' & "</a>" & "</td>
WarrenBelz
146,524
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
65,906
Most Valuable Professional