How can I make a URL title from a dropdown selection? I am trying to send on an email with a link title based on a dropdown selection. I have the following code:
<a href='www.youtube.com'> &dd_teacher1.SelectedText.Value & </a>)
THANK YOU!!!

How can I make a URL title from a dropdown selection? I am trying to send on an email with a link title based on a dropdown selection. I have the following code:
<a href='www.youtube.com'> &dd_teacher1.SelectedText.Value & </a>)
THANK YOU!!!
Hi @mr_g-ski ,
Please modify as follows.
"<a href='Https://www.youtube.com'>"& dd_teacher1.SelectedText.Value &"</a>"
Hope this helps.
Sik