This field will be your Group by on the Summary report instead of the current field which is [Survey_Form]. Now I guess I left something out of my example because in fact you need three different URLs to drill into.
var text FlyerURL = URLRoot() & "db/" & dbid() & "?a=q&qid=97&v0=" & [Survey Name];
var text ProjectURL = URLRoot() & "db/" & dbid() & "?a=q&qid=98&v0=" & [Survey Name];
var text RepURL = URLRoot() & "db/" & dbid() & "?a=q&qid=99&v0=" & [Survey Name];
var text URL = IF(
Begins([Survey_Name], "Flyer"), $FlyerURL,
Begins([Survey_Name], "Project"), $ProjectURL,
Begins([Survey_Name], "Rep"), $RepURL);
var text Words = [Survey_Name];
"<a href=" & $URL & ">" & $Words & "</a>"
So you will need to create three <ask the user> reports which have have dummied in a qid 97, 98 and 99 which have the correct fields for each type of Survey Form.
------------------------------
Mark Shnier (Your Quickbase Coach)
mark.shnier@gmail.com
------------------------------