Newbie to SAS here!
I was following this thread about adding an image to a report:
http://support.sas.com/forums/thread.jspa?messageID=5092Ꮴ
In particular I was following this example:
proc report data=example missing nowindows;
title 'another way';
column third second,( analisys number);
define third / group '^S={preimage="c:\temp\kermit.jpg"}^nthird';
define second / display across 'second';
define analisys /analysis ' ' ;
define number / analysis ' ';
rbreak after / summarize;
run;
I wanted to modify this example to show images for each row of my report. I was able to show the same image for each row using the example above. So that was good. Now I want to show the correct image for the correct ID. So I created a data step to create a column that contains the correct URL. However when I replace preimage with the column name, I don't get the image. Is there a way to do this?
Example (myimage is the column name):
define third / group {preimage=myimage}^nthird;
TIA
Patrick