I am trying to create an HTML doc and/or XLSx doc with ODS and cannot seem to get image to show up on Linux server. Shows up fine in EG Here is code ods results on; ods escapechar='~'; %LET FPATH=/sas/data/Comm_Bank/users/sadofmi/output/; %let pict=KeyLogo.png; *** this is valid and small picture**; ods html file="testp.html" path="&fpath."; proc print data=sashelp.class; title j=l h=2 '~S={preimage="&fpath.&pict"} Class Help Data Set'; run; run; Looks like HTML gets created properly: as <img alt="" src="/sas/data/Comm_Bank/users/sadofmi/output/KeyLogo.png"> Any ideas will be appreciated Mike
... View more