Forum Discussion

ShalomEguale's avatar
ShalomEguale
Qrew Member
2 days ago
Solved

Embed hyperlink in Formula Rich Text field

Hi, 

I have a rich text formula field with an IF function to display specific text when a criteria is met. I want to add a link to a file in between the text output that opens on a different window. I need the display text to show as a hyperlink.

Example: If ([Platform] = "A", "Complete all tasks assigned for 'Priority Sites' once every 2 months", "No action necessary for this year")

Where 'Priority Sites' is the display text for the SharePoint web link https://sharepoint/prioritysites.pdf

From what I could find online, I guess I have to create a hyperlink field to store the web address but I'm not too sure how that works. Can someone provide a step by step guide on how to achieve the desired output?

  • The generic syntax for a Rich Text Hyperlink is this:

    "<a href=" & $URL & ">" & $Words & "</a>"

    so if you had a URL type field to store the link you could do

    var text Words = "PrioritySites";

    var text URL = [My URL field];

    var text Hyperlink = "<a href=" & $URL & ">" & $Words & "</a>";

    If ([Platform] = "A", "Complete all tasks assigned for " & $Hyperlink & " once every 2 months", "No action necessary for this year")

  • The generic syntax for a Rich Text Hyperlink is this:

    "<a href=" & $URL & ">" & $Words & "</a>"

    so if you had a URL type field to store the link you could do

    var text Words = "PrioritySites";

    var text URL = [My URL field];

    var text Hyperlink = "<a href=" & $URL & ">" & $Words & "</a>";

    If ([Platform] = "A", "Complete all tasks assigned for " & $Hyperlink & " once every 2 months", "No action necessary for this year")

    • ShalomEguale's avatar
      ShalomEguale
      Qrew Member

      Hi Mark,

      Thanks for your help. How do I store the link in the URL field? It seems the url field type is more appropriate for users to enter a link in a form. But since this isn't going in a form, should I use the formula url field instead and just add the link to the formula box?

      • MarkShnier__You's avatar
        MarkShnier__You
        Icon for Qrew Legend rankQrew Legend

        If the link is always the same then you can make it be a formula URL field with the formula of just the full link in quotes 

        "https://sharepoint/prioritysites.pdf"