How do I put links on the first proc print page footnote to link to other proc prints? Like Link1 (which takes me to proc print with Route1) ods html file="C:\Documents and Settings\test.html"; proc print data=sasuser.cargorev N noobs; title1 "Data of Cargo Rev"; footnote1 ???? run; proc print data=sasuser.cargorev N noobs; title1 "Data of Route 1"; where Route="Route1"; run; proc print data=sasuser.cargorev N noobs; title1 "Data of Route 2"; where Route="Route2"; run; proc print data=sasuser.cargorev N noobs; title1 "Data of Route 3"; where Route="Route3"; run; proc print data=sasuser.cargorev N noobs; title1 "Data of Route 4"; where Route="Route4"; run; proc print data=sasuser.cargorev N noobs; title1 "Data of Route 5"; where Route="Route5"; run; proc print data=sasuser.cargorev N noobs; title1 "Data of Route 6"; where Route="Route6"; run; ods html close;
... View more