The case is: The target URL is for example "https://stackoverflow.com/". I have a data set with Ids. If I put "https://stackoverflow.com/"+"ID" it is the final hyperlink, which leads to the final webpage.
How to create the list id Hyperlinks (data step) with URLs in which the name of every cell will be "ID" (after proc print), and when I click the hyperlink, it addresses me to "https://stackoverflow.com/3453456" Thanks!
Here is my code:
%let url = https://stackoverflow.com/;
Data final_table;
set table_id;
Link='<A' || compress("HREF=""&url||">(ID) </A>;run;
but it goes with the error
** I did like Dompazz said, here is the result: