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;
In HTML, that "jump" is made with an anchor. So if you gave the page the name of 'c:\temp\test.html#chevrolet' and then were able to use ODS to add an anchor statement
ods html text="<a name='chevrolet'>";
to right before that proc report, that might work.
Dunno. Untested. Haven't tried it.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.