Forum Discussion

ProjectsForce1's avatar
ProjectsForce1
Qrew Trainee
5 years ago

Formula Rich Text / Image / Link To Project

Drawing a blank on this one. Trying to add this code to formula rich text field, pointing to the record in which the button is pressed. 

"<a href=\"http://quickbase.com/webinars/\"><img src=\"https://images.quickbase.com/si/32/128-link.png\"></a>"


------------------------------
ProjectsForce
------------------------------
  • Here is an example of a generic hyperlink using an image  to lick on

    var text Image = "<img src=ttps://images.quickbase.com/si/24/222-point_green.png>";

    var text URL = ... the URL goes here ;

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


    // it was not clear from your post which URL you wanted to direct the click to.

    ------------------------------
    Mark Shnier (YQC)
    Quick Base Solution Provider
    Your Quick Base Coach
    http://QuickBaseCoach.com
    mark.shnier@gmail.com
    ------------------------------
    • MarkShnier__You's avatar
      MarkShnier__You
      Icon for Qrew Legend rankQrew Legend
      btw, if you wanted to open a new tab

      var text URL = "http://www.google.com";
      var text Words = "search";

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

      ------------------------------
      Mark Shnier (YQC)
      Quick Base Solution Provider
      Your Quick Base Coach
      http://QuickBaseCoach.com
      mark.shnier@gmail.com
      ------------------------------