Thank you for a quick reply Mark...couple of follow up questions:
1 - you state that this would be a mirror of a current field, not sure what that means or how to create (other than duplicating the field), but;
2 - you state to start with a "totally normal hyperlink", but if the field I chose to mirror isn't a link field do I then convert it to one?
3 - assuming I need to change the "24" in the provided sample to the number of the popup report I created (a=q&qid=24).
4 - assuming that " & [Mstyle]" refers to ID of the record in my table.
5 - assuming that all fields in the "List" portion would need to be updated to reflect fields in my table.
Other than #1, I created a new url field using the following code:
var text Words = "Preview";
var text URL = URLRoot() & "db/" & [_DBID_ASSETS] & "?a=q&qid=3&nv=1&v0=" & [Record ID#];
var text Hyperlink = "<a href=" & $URL & ">" & $Words & "</a>";
var text HoverWords = "Preview" &
List("\n",
List(" ", [Asset Type], ToText([Record ID#])),
List(" ", [Model], [Serial Number]), [Manufacturer])
& "'";
"<div>" & "<span title=" & $HoverWords & ">" & $Hyperlink & "</b></span>" & "<div>"
I indicated the field should display as a button and open as a popup. Added the field to my report, when clicked, I do get a popup but it is blank.