BookmarkSubscribeRSS Feed
gzr2mz39
Quartz | Level 8
Instead of using IDX (eg IDX1, IDX2, etc) as an anchor I would like to use the values of the "city" variable (eg avalon, azusa, fort irwin, etc).
How do I do this?

ods html path='C:\Documents and Settings\Output\'
body='cityinfo.html'
anchor='IDX1'
title1 j=c "#byline";
options nobyline;
proc print data=test noobs label;
by city;
var day zip;
run;
1 REPLY 1
Cynthia_sas
Diamond | Level 26
Hi
The ANCHOR= option creates numbered NAME attributes that all start with the same prefix string...so IDX1,IDX2, IDX3 or PILOT1, PILOT2, or PILOT3.

To do what you want to do (have each NAME attribute be a different city), you would need to move into the world of SAS Macro processing and in addition, investigate how to append content to an HTML file using the NO_TOP_MATTER and NO_BOTTOM_MATTER sub options.

However since you can probably predict what by group will get which IDX#, do you really need this level of control???

Cynthia

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1392 views
  • 0 likes
  • 2 in conversation