Forum Discussion

MichaelTamoush's avatar
MichaelTamoush
Qrew Captain
5 years ago

Help with Formula Rich Text. Open in new tab

I have a formula rich text field that I will use as a link to a report link that houses multiple files.

I am trying to figure out how to open the report in a new browser tab.

var text Invoices = URLRoot() & "db/bqni6ty2h?a=q&qid=6&nv=1&v0=" & [Related Parent Record ID];  //Report Link


"<a href=" & $Invoices & ">" & "Report Link" & "</a>" //This works, but opens the report in the same browser tab. *What do I add to open in a new tab?

------------------------------
Mike Tamoush
------------------------------
  • Try this

    "<a href=" & $Invoices & " target=_blank" & ">" & "Report Link" & "</a>"

    ------------------------------
    Mark Shnier (YQC)
    Quick Base Solution Provider
    Your Quick Base Coach
    http://QuickBaseCoach.com
    mark.shnier@gmail.com
    ------------------------------
    • MichaelTamoush's avatar
      MichaelTamoush
      Qrew Captain
      Thanks! I new target=_blank was the  key but I couldn't figure out where to put it. That's the spot.

      ------------------------------
      Mike Tamoush
      ------------------------------