<?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 - LOGO in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/ODS-EXCEL-LOGO/m-p/525498#M4984</link>
    <description>&lt;P&gt;ODS EXCEL does support logos.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This paper goes over how to add a logo:&amp;nbsp;&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think you need to use the macro included with the paper to include the logos though.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/125795"&gt;@DLROW&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From the posts, I understand that logo could not be added to Excel file from SAS. Is that true? How can I add&amp;nbsp; logo along with title on the output result.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ODS LISTING CLOSE;&lt;/P&gt;
&lt;P&gt;OPTIONS DEVICE=ACTXIMG;&lt;BR /&gt;ODS EXCEL FILE= "\\Path"&lt;BR /&gt;Options(SHEET_INTERVAL='NONE' SHEET_NAME='REPORT' SHEET_LABEL='' ORIENTATION='LANDSCAPE' FITTOPAGE='YES'&lt;BR /&gt;EMBEDDED_TITLES='YES' AUTOFILTER="1-4" FROZEN_HEADERS="5" ABSOLUTE_COLUMN_WIDTH='17,17,20,20'&lt;BR /&gt;ROW_HEIGHTS='0,0,0,20,0,0,0');&lt;BR /&gt;goptions iback='\\path\ logo.jpg' /**ADD LOGO***/&lt;BR /&gt;imagestyle=fit vsize=.62in hsize=3.86in ;&lt;BR /&gt;title1 H=2.7 justify=left bcolor=STB color=white "ABCDEF";&lt;BR /&gt;title2 H=2 justify=left bcolor=STB color=white "ABCD ";&lt;BR /&gt;title3 H=2 justify=left bcolor=STB color=white" EFGH " ;&lt;/P&gt;
&lt;P&gt;PROC REPORT DATA=WORK.PREVENTION_PHYSICAL nowd&lt;BR /&gt;style(report)=[borderstyle=solid bordercolor=black BACKGROUND=TRANSPARENT verticalalign=T]&lt;BR /&gt;style(header)=[background=silver color=black fontfamily=calibri fontsize=3 textalign=L verticalalign=T borderstyle=solid bordercolor=black]&lt;BR /&gt;style(column)=[fontfamily=calibri fontsize=2.8 textalign=L verticalalign=T borderstyle=solid bordercolor=black tagattr="format:ddmmmyyyy"];&lt;BR /&gt;columns Date_OF_Birth Student_ID LAST_NAME FIRST_NAME;&lt;/P&gt;
&lt;P&gt;define Date_OF_Birth / display "DOB" format=date9.;&lt;BR /&gt;define Student_ID / display "Student ID";&lt;BR /&gt;define LAST_NAME/ display "LAST NAME";&lt;BR /&gt;define FIRST_NAME / display "FIRST NAME";&lt;/P&gt;
&lt;P&gt;RUN;&lt;BR /&gt;ODS EXCEL CLOSE;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 08 Jan 2019 17:28:55 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2019-01-08T17:28:55Z</dc:date>
    <item>
      <title>ODS EXCEL - LOGO</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ODS-EXCEL-LOGO/m-p/525496#M4983</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From the posts, I understand that logo could not be added to Excel file from SAS. Is that true? How can I add&amp;nbsp; logo along with title on the output result.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ODS LISTING CLOSE;&lt;/P&gt;&lt;P&gt;OPTIONS DEVICE=ACTXIMG;&lt;BR /&gt;ODS EXCEL FILE= "\\Path"&lt;BR /&gt;Options(SHEET_INTERVAL='NONE' SHEET_NAME='REPORT' SHEET_LABEL='' ORIENTATION='LANDSCAPE' FITTOPAGE='YES'&lt;BR /&gt;EMBEDDED_TITLES='YES' AUTOFILTER="1-4" FROZEN_HEADERS="5" ABSOLUTE_COLUMN_WIDTH='17,17,20,20'&lt;BR /&gt;ROW_HEIGHTS='0,0,0,20,0,0,0');&lt;BR /&gt;goptions iback='\\path\ logo.jpg' /**ADD LOGO***/&lt;BR /&gt;imagestyle=fit vsize=.62in hsize=3.86in ;&lt;BR /&gt;title1 H=2.7 justify=left bcolor=STB color=white "ABCDEF";&lt;BR /&gt;title2 H=2 justify=left bcolor=STB color=white "ABCD ";&lt;BR /&gt;title3 H=2 justify=left bcolor=STB color=white" EFGH " ;&lt;/P&gt;&lt;P&gt;PROC REPORT DATA=WORK.PREVENTION_PHYSICAL nowd&lt;BR /&gt;style(report)=[borderstyle=solid bordercolor=black BACKGROUND=TRANSPARENT verticalalign=T]&lt;BR /&gt;style(header)=[background=silver color=black fontfamily=calibri fontsize=3 textalign=L verticalalign=T borderstyle=solid bordercolor=black]&lt;BR /&gt;style(column)=[fontfamily=calibri fontsize=2.8 textalign=L verticalalign=T borderstyle=solid bordercolor=black tagattr="format:ddmmmyyyy"];&lt;BR /&gt;columns Date_OF_Birth Student_ID LAST_NAME FIRST_NAME;&lt;/P&gt;&lt;P&gt;define Date_OF_Birth / display "DOB" format=date9.;&lt;BR /&gt;define Student_ID / display "Student ID";&lt;BR /&gt;define LAST_NAME/ display "LAST NAME";&lt;BR /&gt;define FIRST_NAME / display "FIRST NAME";&lt;/P&gt;&lt;P&gt;RUN;&lt;BR /&gt;ODS EXCEL CLOSE;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jan 2019 17:23:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ODS-EXCEL-LOGO/m-p/525496#M4983</guid>
      <dc:creator>DLROW</dc:creator>
      <dc:date>2019-01-08T17:23:12Z</dc:date>
    </item>
    <item>
      <title>Re: ODS EXCEL - LOGO</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ODS-EXCEL-LOGO/m-p/525498#M4984</link>
      <description>&lt;P&gt;ODS EXCEL does support logos.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This paper goes over how to add a logo:&amp;nbsp;&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think you need to use the macro included with the paper to include the logos though.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/125795"&gt;@DLROW&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From the posts, I understand that logo could not be added to Excel file from SAS. Is that true? How can I add&amp;nbsp; logo along with title on the output result.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ODS LISTING CLOSE;&lt;/P&gt;
&lt;P&gt;OPTIONS DEVICE=ACTXIMG;&lt;BR /&gt;ODS EXCEL FILE= "\\Path"&lt;BR /&gt;Options(SHEET_INTERVAL='NONE' SHEET_NAME='REPORT' SHEET_LABEL='' ORIENTATION='LANDSCAPE' FITTOPAGE='YES'&lt;BR /&gt;EMBEDDED_TITLES='YES' AUTOFILTER="1-4" FROZEN_HEADERS="5" ABSOLUTE_COLUMN_WIDTH='17,17,20,20'&lt;BR /&gt;ROW_HEIGHTS='0,0,0,20,0,0,0');&lt;BR /&gt;goptions iback='\\path\ logo.jpg' /**ADD LOGO***/&lt;BR /&gt;imagestyle=fit vsize=.62in hsize=3.86in ;&lt;BR /&gt;title1 H=2.7 justify=left bcolor=STB color=white "ABCDEF";&lt;BR /&gt;title2 H=2 justify=left bcolor=STB color=white "ABCD ";&lt;BR /&gt;title3 H=2 justify=left bcolor=STB color=white" EFGH " ;&lt;/P&gt;
&lt;P&gt;PROC REPORT DATA=WORK.PREVENTION_PHYSICAL nowd&lt;BR /&gt;style(report)=[borderstyle=solid bordercolor=black BACKGROUND=TRANSPARENT verticalalign=T]&lt;BR /&gt;style(header)=[background=silver color=black fontfamily=calibri fontsize=3 textalign=L verticalalign=T borderstyle=solid bordercolor=black]&lt;BR /&gt;style(column)=[fontfamily=calibri fontsize=2.8 textalign=L verticalalign=T borderstyle=solid bordercolor=black tagattr="format:ddmmmyyyy"];&lt;BR /&gt;columns Date_OF_Birth Student_ID LAST_NAME FIRST_NAME;&lt;/P&gt;
&lt;P&gt;define Date_OF_Birth / display "DOB" format=date9.;&lt;BR /&gt;define Student_ID / display "Student ID";&lt;BR /&gt;define LAST_NAME/ display "LAST NAME";&lt;BR /&gt;define FIRST_NAME / display "FIRST NAME";&lt;/P&gt;
&lt;P&gt;RUN;&lt;BR /&gt;ODS EXCEL CLOSE;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jan 2019 17:28:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ODS-EXCEL-LOGO/m-p/525498#M4984</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-01-08T17:28:55Z</dc:date>
    </item>
    <item>
      <title>Re: ODS EXCEL - LOGO</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ODS-EXCEL-LOGO/m-p/525501#M4986</link>
      <description>&lt;P&gt;Got the answer. It works now... I didn't add&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc gslide;&lt;BR /&gt;run; quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;after image style..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ODS LISTING CLOSE;&lt;/P&gt;&lt;P&gt;OPTIONS DEVICE=ACTXIMG;&lt;BR /&gt;ODS EXCEL FILE= "\\Path"&lt;BR /&gt;Options(SHEET_INTERVAL='NONE' SHEET_NAME='REPORT' SHEET_LABEL='' ORIENTATION='LANDSCAPE' FITTOPAGE='YES'&lt;BR /&gt;EMBEDDED_TITLES='YES' AUTOFILTER="1-4" FROZEN_HEADERS="5" ABSOLUTE_COLUMN_WIDTH='17,17,20,20'&lt;BR /&gt;ROW_HEIGHTS='0,0,0,20,0,0,0');&lt;BR /&gt;goptions iback='\\path\ logo.jpg' /**ADD LOGO***/&lt;BR /&gt;imagestyle=fit vsize=.62in hsize=3.86in ;&lt;/P&gt;&lt;P&gt;proc gslide; /*Missed this*/&lt;BR /&gt;run; quit; &lt;SPAN&gt;/*Missed this*/&lt;/SPAN&gt;&lt;BR /&gt;title1 H=2.7 justify=left bcolor=STB color=white "ABCDEF";&lt;BR /&gt;title2 H=2 justify=left bcolor=STB color=white "ABCD ";&lt;BR /&gt;title3 H=2 justify=left bcolor=STB color=white" EFGH " ;&lt;/P&gt;&lt;P&gt;PROC REPORT DATA=WORK.PREVENTION_PHYSICAL nowd&lt;BR /&gt;style(report)=[borderstyle=solid bordercolor=black BACKGROUND=TRANSPARENT verticalalign=T]&lt;BR /&gt;style(header)=[background=silver color=black fontfamily=calibri fontsize=3 textalign=L verticalalign=T borderstyle=solid bordercolor=black]&lt;BR /&gt;style(column)=[fontfamily=calibri fontsize=2.8 textalign=L verticalalign=T borderstyle=solid bordercolor=black tagattr="format:ddmmmyyyy"];&lt;BR /&gt;columns Date_OF_Birth Student_ID LAST_NAME FIRST_NAME;&lt;/P&gt;&lt;P&gt;define Date_OF_Birth / display "DOB" format=date9.;&lt;BR /&gt;define Student_ID / display "Student ID";&lt;BR /&gt;define LAST_NAME/ display "LAST NAME";&lt;BR /&gt;define FIRST_NAME / display "FIRST NAME";&lt;/P&gt;&lt;P&gt;RUN;&lt;BR /&gt;ODS EXCEL CLOSE;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jan 2019 17:39:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ODS-EXCEL-LOGO/m-p/525501#M4986</guid>
      <dc:creator>DLROW</dc:creator>
      <dc:date>2019-01-08T17:39:56Z</dc:date>
    </item>
  </channel>
</rss>

