I have a variable called url1 (eg www.abc.com, www.sas.com).
How do I include the variable url1 in the code below?
Also, I have a macro variable &path (where &path is
%let path=%str(http://xyz.com/);
How would I combine &path and url2 (where url2 is place1, place2, etc) in the code below to create links like http://xyz.com/place1, http://xyz.com/place2, etc?
proc report data=reports nowd style(report)={width=100pct}
style(header)={background=cx494068 color=white};
columns date title new;
define new / computed " ";
compute title;
call define(_col_, "style", "style=[color=blue textdecoration=underline url='" url1 "']");
endcomp;
run;
Thank you.
... View more