Hi @Doug Copeland, I believe that @Menno Wittebol was on the right track...
Please take a look at the code below. The text in blue identifies the URL that will be navigated to, and the red text represent the actual text that will be displayed on the screen. The target="_blank" piece is optional - this just makes the link open in a new tab on your browser.
Assumptions:
The "Project_Site" column in your "Project Master Data" dataset contains the URL: https://palm-prd/PWA/R106862Q - iDS - Work Package. I also assume that this column is referenced in the Ad Hoc Query for the HTML component.
Caveat:
URL's do not typically have spaces in them - this is why URL's sometimes have text like "%20" in them, to represent a space - so I would make sure that the URL works correctly or you may need to address this.
Code:
<div
class="appsText"
align="left"
style="padding:10px 0px 0px 0px;
font-size:10px;color:#004C76;">
<b>
<a href="<%=Projects Master Data.Project_Site%>" target="_blank"><%=Projects Master Data.Project_Site%></a>
</b>
</br>
Hope that helps!