Skip to main content Join the Agentforce Virtual Hackathon to build innovative solutions and compete for a $50k Grand Prize. Sign up now. Terms apply.
Hi all,

 

In a flow, I'm trying to display a clickable URL on a Screen element. The clickable URL is saved in a formula variable which uses the Account ID saved in another variable

 

Formula: HYPERLINK("/" & {!VarSingleAccountRecord.Id},"","_self" )

 

For some reason I get the following output on the Screen element. I went through several article with a similar issue but couldn't find any solution for Flows.

 

Flow and hyperlink in formula variable

 

Here's how the Flow looks like. I use a Loop element because the output might return several Account records

 

Vom Benutzer hinzugefügtes Bild

 

Does anyone know how to handle this?

 

Thanks!

 

Xavier
9 answers
  1. Nov 19, 2020, 1:45 PM
    A little late, but maybe it helps someone... you can do a formula variable that contains:

     

    "<a href='" & RecordIDorUrl & "'>" & DescriptionField & "</a>" & BR()

     

    Notice the simple ' on the href, ie: href='http://www.google.com'
  2. Feb 3, 2020, 8:27 AM
    Hi Deepak, this wouldn't work in my use case as the text i want to display (via the assignment element) is a concatenation of AccountName + ' - ' + clickable URL + break line.

     

    Salesforce however confirmed that this is a current issue that should be fixed in the Spring 20 release.

     

    https://success.salesforce.com/issues_view?id=a1p3A0000003dNKQAY

     

    http://releasenotes.docs.salesforce.com/en-us/spring20/release-notes/rn_forcecom_flow_cruc_generate_html.htm

     

    Fingers crossed

     

    Thanks

     

    Hi Deepak, this wouldn't work in my use case as the text i want to display (via the assignment element) is a concatenation of AccountName + ' - ' + clickable URL + break line.

     

     
  3. Apr 13, 2021, 5:29 AM
    Was this fixed in 20?
0/9000