Is it possible to jump to a specific row in a PROC REPORT HTML-output when it opens? Example: I want to jump to 'Chervolet' in this report: ods html file ='c:\temp\test.html'; proc report nofs data=sashelp.cars; columns make model type origin; run; ods html close;
... View more