Forum Discussion
DouglasH
6 years agoQrew Member
can you add a static hyperlink as a field?
QuickBaseCoachD
6 years agoQrew Captain
yes, you can Make a Rich text field with this format
var text Words = ....
var text URL = URLRoot() & "db/" & [_DBID_PATIENTS] & "?a=dr&rid=" & [Related Patient];
"<a href=" & $URL & ">" & $Words & "</a>"
Basically you just inset the words and insert the URL to hyperlink to when clicked.
var text Words = ....
var text URL = URLRoot() & "db/" & [_DBID_PATIENTS] & "?a=dr&rid=" & [Related Patient];
"<a href=" & $URL & ">" & $Words & "</a>"
Basically you just inset the words and insert the URL to hyperlink to when clicked.