Hi,
I have a proc report with embedded links to another report. I use the script below to generate the linked column. It does not seem to be working when I create the stored a stored proc report in Web Report Studio.
I thought WRS 4.2 finally supported embedded links.
proc report data=Survey_Report(where=(question not in (11,8,12,13,14,15) and ReasonForCall='Screener'));
column SurveyDate AverageScore, Question;
define SurveyDate/group;
define Question/across order=data;
define AverageScore/analysis mean '' style(column=background=score.};
compute SurveyDate;
urlstring='http://www.google.com';
call define(_col_, 'URL', urlstring);
endcomp;
run;
... View more