From: Robert on
How do you put a hyperlink on a BY value?

e.g. in the following code I want the BY line in the output to be
clickable and link to a webpage.

ods html body='temp.html'

proc print data=test;
by id;
run;

ods html close;


Thanks,
Robert