Hi:
Are you doing something for SAS/GRAPH?? If so, this example may be useful:
http://support.sas.com/documentation/cdl/en/graphref/61884/HTML/default/gr08ods2-ex.htm
Modifying the code example a bit using SASHELP.CLASS, I can make the #IDX number use a dataset variable as shown below.
Usage-wise, I'm not sure that the "target=_blank" is going to be OK, depending on where/how you plan to use this variable value. Usually, for ODS HTML output, you use the HREFTARGET style attribute to set TARGET=_BLANK:
http://support.sas.com/kb/24/058.html
If you have questions about creating hyperlinks with ODS and/or with SAS/GRAPH, you might wish to open a track with Tech Support.
cynthia
[pre]
data testit;
length namedrill $70;
set sashelp.class;
keep name namedrill;
count+1;
namedrill=catt('HREF=','"','http://test.com/zipinfo.html#IDX',left(put(count,2.0)),' target=_blank','"');
run;
proc print data=testit;
run;
[/pre]
Produces:
[pre]
Obs namedrill Name
1 HREF="http://test.com/zipinfo.html#IDX1 target=_blank" Alfred
2 HREF="http://test.com/zipinfo.html#IDX2 target=_blank" Alice
3 HREF="http://test.com/zipinfo.html#IDX3 target=_blank" Barbara
4 HREF="http://test.com/zipinfo.html#IDX4 target=_blank" Carol
5 HREF="http://test.com/zipinfo.html#IDX5 target=_blank" Henry
6 HREF="http://test.com/zipinfo.html#IDX6 target=_blank" James
7 HREF="http://test.com/zipinfo.html#IDX7 target=_blank" Jane
8 HREF="http://test.com/zipinfo.html#IDX8 target=_blank" Janet
9 HREF="http://test.com/zipinfo.html#IDX9 target=_blank" Jeffrey
10 HREF="http://test.com/zipinfo.html#IDX10 target=_blank" John
11 HREF="http://test.com/zipinfo.html#IDX11 target=_blank" Joyce
12 HREF="http://test.com/zipinfo.html#IDX12 target=_blank" Judy
13 HREF="http://test.com/zipinfo.html#IDX13 target=_blank" Louise
14 HREF="http://test.com/zipinfo.html#IDX14 target=_blank" Mary
15 HREF="http://test.com/zipinfo.html#IDX15 target=_blank" Philip
16 HREF="http://test.com/zipinfo.html#IDX16 target=_blank" Robert
17 HREF="http://test.com/zipinfo.html#IDX17 target=_blank" Ronald
18 HREF="http://test.com/zipinfo.html#IDX18 target=_blank" Thomas
19 HREF="http://test.com/zipinfo.html#IDX19 target=_blank" William
[/pre]
... View more