<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: ODS EXCEL to have multiple tabs and embed image(logo) in title in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-to-have-multiple-tabs-and-embed-image-logo-in-title/m-p/409314#M19747</link>
    <description>&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;I don't think that the Excel destination supports PREIMAGE, either:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods _all_ close;

ods escapechar='^';

*  Embed a JPG file;

title "^{style [preimage='path-to-image-file\image-file-name.jpg']}";

ods html  file='path-to-output-file\temp.htm';
ods pdf   file='path-to-output-file\temp.pdf';
ods Excel file='path-to-output-file\temp.xlsx';

proc print data=sashelp.class(obs=1); run; quit;

ods _all_ close;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;The image is embedded in HTML and PDF, but not Excel.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Vince DelGobbo&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;SAS R&amp;amp;D&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 31 Oct 2017 23:05:08 GMT</pubDate>
    <dc:creator>Vince_SAS</dc:creator>
    <dc:date>2017-10-31T23:05:08Z</dc:date>
    <item>
      <title>ODS EXCEL to have multiple tabs and embed image(logo) in title</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-to-have-multiple-tabs-and-embed-image-logo-in-title/m-p/409058#M19732</link>
      <description>&lt;P&gt;HI,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am using the below code to create multiple sheets of excel output.&lt;/P&gt;
&lt;P&gt;But I am not able to get&amp;nbsp;the image embed into the title.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods tagsets.excelxp file = "&amp;amp;excelpath" style =printer&lt;BR /&gt; options(sheet_name = 'Cover Page' sheet_interval='proc' embedded_titles='yes');&lt;BR /&gt;ods escapechar='~';&lt;/P&gt;
&lt;P&gt;Title5 justify=left bold "Study :" notbold "study name" '~S={postimage="/tlly2t/3rdparty/irserver/lilly.png" color=white} y';&lt;/P&gt;
&lt;P&gt;/*--- sas statements ---*/&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ods options(sheet_name = 'parameters' sheet_interval='proc' embedded_titles='yes');&lt;/P&gt;
&lt;P&gt;Title5 justify=left bold "Study :" notbold "study name" '~S={postimage="/tlly2t/3rdparty/irserver/lilly.png" color=white} y';&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;/*--- sas statements ---*/&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods _all_ close;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have attached the screen shot of the sample requirement heading to this query.&lt;/P&gt;
&lt;P&gt;Kindly help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Moovendhan Devaraj&lt;/P&gt;</description>
      <pubDate>Tue, 31 Oct 2017 11:16:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-to-have-multiple-tabs-and-embed-image-logo-in-title/m-p/409058#M19732</guid>
      <dc:creator>DMoovendhan</dc:creator>
      <dc:date>2017-10-31T11:16:26Z</dc:date>
    </item>
    <item>
      <title>Re: ODS EXCEL to have multiple tabs and embed image(logo) in title</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-to-have-multiple-tabs-and-embed-image-logo-in-title/m-p/409152#M19735</link>
      <description>&lt;P&gt;ODS TAGSETS does not support embedded images. Your code is not ODS EXCE, but ODS EXCEL does support multiple tabs/embedded images. However, it's not production until SAS 9.4 TS1M3&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Oct 2017 15:00:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-to-have-multiple-tabs-and-embed-image-logo-in-title/m-p/409152#M19735</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-10-31T15:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: ODS EXCEL to have multiple tabs and embed image(logo) in title</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-to-have-multiple-tabs-and-embed-image-logo-in-title/m-p/409232#M19745</link>
      <description>&lt;P&gt;Thanks Reeza for looking into this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am using sas 9.4, and I am able to create multiple tabs with it, should I modify the code to get the image embedded.&lt;/P&gt;
&lt;P&gt;Previously with tagset I was getting a link added to the excel but now not getting any of the info in output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please advise.&lt;/P&gt;</description>
      <pubDate>Tue, 31 Oct 2017 17:38:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-to-have-multiple-tabs-and-embed-image-logo-in-title/m-p/409232#M19745</guid>
      <dc:creator>DMoovendhan</dc:creator>
      <dc:date>2017-10-31T17:38:57Z</dc:date>
    </item>
    <item>
      <title>Re: ODS EXCEL to have multiple tabs and embed image(logo) in title</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-to-have-multiple-tabs-and-embed-image-logo-in-title/m-p/409235#M19746</link>
      <description>Post the code your actually using then. There's a paper from Chevell Parker on lexjansen.com that has examples of how to embed images.</description>
      <pubDate>Tue, 31 Oct 2017 17:42:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-to-have-multiple-tabs-and-embed-image-logo-in-title/m-p/409235#M19746</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-10-31T17:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: ODS EXCEL to have multiple tabs and embed image(logo) in title</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-to-have-multiple-tabs-and-embed-image-logo-in-title/m-p/409314#M19747</link>
      <description>&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;I don't think that the Excel destination supports PREIMAGE, either:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods _all_ close;

ods escapechar='^';

*  Embed a JPG file;

title "^{style [preimage='path-to-image-file\image-file-name.jpg']}";

ods html  file='path-to-output-file\temp.htm';
ods pdf   file='path-to-output-file\temp.pdf';
ods Excel file='path-to-output-file\temp.xlsx';

proc print data=sashelp.class(obs=1); run; quit;

ods _all_ close;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;The image is embedded in HTML and PDF, but not Excel.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Vince DelGobbo&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;SAS R&amp;amp;D&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Oct 2017 23:05:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-to-have-multiple-tabs-and-embed-image-logo-in-title/m-p/409314#M19747</guid>
      <dc:creator>Vince_SAS</dc:creator>
      <dc:date>2017-10-31T23:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: ODS EXCEL to have multiple tabs and embed image(logo) in title</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-to-have-multiple-tabs-and-embed-image-logo-in-title/m-p/409321#M19748</link>
      <description>&lt;P&gt;&amp;nbsp;No, preimage isn’t supported but other methods are available. See the example starting on page 3 here&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/resources/papers/proceedings16/SAS5642-2016.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings16/SAS5642-2016.pdf&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Nov 2017 00:01:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-to-have-multiple-tabs-and-embed-image-logo-in-title/m-p/409321#M19748</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-11-01T00:01:59Z</dc:date>
    </item>
    <item>
      <title>Re: ODS EXCEL to have multiple tabs and embed image(logo) in title</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-to-have-multiple-tabs-and-embed-image-logo-in-title/m-p/409944#M19765</link>
      <description>&lt;P&gt;Thanks Reeza, this paper looks interesting, let me check it and will get back to you, thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Nov 2017 17:45:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-to-have-multiple-tabs-and-embed-image-logo-in-title/m-p/409944#M19765</guid>
      <dc:creator>DMoovendhan</dc:creator>
      <dc:date>2017-11-02T17:45:01Z</dc:date>
    </item>
    <item>
      <title>Re: ODS EXCEL to have multiple tabs and embed image(logo) in title</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-to-have-multiple-tabs-and-embed-image-logo-in-title/m-p/411100#M19798</link>
      <description>&lt;P&gt;I tried it,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But the code that I am executing is in Unix and I couldn't execute the .vbs file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am dropping an email to support@sas.com.&lt;/P&gt;
&lt;P&gt;Please let know if you have any other thoughts.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Nov 2017 09:41:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-to-have-multiple-tabs-and-embed-image-logo-in-title/m-p/411100#M19798</guid>
      <dc:creator>DMoovendhan</dc:creator>
      <dc:date>2017-11-07T09:41:07Z</dc:date>
    </item>
  </channel>
</rss>

