Forum Discussion
MichaelTamoush
4 years agoQrew Captain
You can use a formula rich text field with the following syntax (Thanks to Mark of Your QuickBase Coach for originally posting this on threads)
var text Words = [Field With Short Descriptive Name];
var text URL = [Field With URL Link];
"<a href=" & $URL & ">" & $Words & "</a>"
------------------------------
Mike Tamoush
------------------------------
var text Words = [Field With Short Descriptive Name];
var text URL = [Field With URL Link];
"<a href=" & $URL & ">" & $Words & "</a>"
------------------------------
Mike Tamoush
------------------------------
- MarkJohnson24 years agoQrew MemberThank you Mike. These are the fields now, [Name]=descriptive name and [URL link]=full path. Are you saying I would have to create an additional rich text formula field?
------------------------------
Mark Johnson
------------------------------- MichaelTamoush4 years agoQrew CaptainYes, and the rich text formula is the one you would display in reports or on forms. The URL Link would likely never be shown, unless you wanted to. The name field only needs to appear if you want it to be editable. If it is always just imported from a spreadsheet, not necessary to show that field anywhere either.
*Note: You MUST have https:// in your URL link (if it's external) or QB will try to navigate to it's own domain.
**Also, the default setting in QB is for realms NOT to be able to navigate to external websites, so you may need to contact customer support to be sure that option is turned on for you.
var text Words = [Name];
var text URL = [URL Link];
"<a href=" & $URL & ">" & $Words & "</a>"
------------------------------
Mike Tamoush
------------------------------- MarkShnier__You4 years agoQrew LegendA hyperlink should be able to click into any website. It's not restricted.
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
- MarkShnier__You4 years agoQrew LegendYes you need to create a new field of type Formula Rich Text..
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------