- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hi
I'm changing from ODS MARKUP to ODS EXCEL because I need to produce a native XLSX file.
I'm now trying to insert an image and a title on the right side of the image in my report, but I can only get the title directly on the image or below the image.
Does anyone have an alternative solution to insert an image (and the title on the right side of the image) when you use ODS EXCEL?
Best regards Søren (using SAS 9.4 M3)
goptions reset=all device=PNG;
ods _all_ close;
ods excel file='c:\temp\ODS EXCEL and images.xlsx'
options(sheet_interval='none'
embedded_titles="yes");
goptions imagestyle=fit
xmax=5in ymax=1.5in name='text';
proc gslide;
title 'Title from proc gslide';
run; quit;
title 'Title after proc gslide';
proc print data=sashelp.class;
run;
ods _all_ close;
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
According to Chevel Parker, you cannot insert an image directly with ODS EXCEL. You have to post process.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
OT: Off topic because it uses a combination of R and SAS and requires 'full' SAS(SAS command pipe)
see
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I would like to see the combination of R and SAS solution, but the link doesn't work, and there's not enough information about how to find it on the Georgia University website (if it's still there...)