<?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 control row after embedding image using proc gslide in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-control-row-after-embedding-image-using-proc-gslide/m-p/494233#M21664</link>
    <description>Hi: I'm not sure the GSLIDE approach will give you the control you want. Take a look at this paper &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; at the approach that starts on page 3. There is a macro program that the paper author is using that allows you to post-process the XLSX file and insert images into specific locations. That might give you the type of control you're looking for. Otherwise, I'd recommend opening a track with Tech Support.&lt;BR /&gt;&lt;BR /&gt;Cynthia</description>
    <pubDate>Mon, 10 Sep 2018 17:58:48 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2018-09-10T17:58:48Z</dc:date>
    <item>
      <title>ODS Excel control row after embedding image using proc gslide</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-control-row-after-embedding-image-using-proc-gslide/m-p/493628#M21657</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ODS Excel is becoming&amp;nbsp;more commonly used&amp;nbsp;destination for generating native XLSX file. Although there are some bugs, SAS team is working to improve its advantages. I was able to successfully embed image&amp;nbsp; into a sheet before my report. But I was not able to control the space between my image and report. absolute_row_height is applied after the image and not from starting row.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc template; 
define style styles.background_logo;
parent=styles.Excel;
style header/ 
	fontsize=11pt
	backgroundcolor=cornflowerblue;
end;
run;

title;
footnote;
ods _all_ close;
goptions device=actximg;
ods excel file=xl_out;
ods excel options (	sheet_interval='none' 
					sheet_name="Cover Sheet" 
					start_at="2,2" 
) style=background_logo;

goptions iback="/usr/asmile.jpg"  vsize=2in hsize=2in;	;
proc gslide border;
run;
proc print data=sashelp.class;
run;
ods excel close;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="image.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/23104i6036816EA5EF1B4C/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also tried couple of other options mentioned here &lt;A href="https://blogs.sas.com/content/sgf/2017/02/20/tips-for-using-the-ods-excel-destination/" target="_self"&gt;Tips for Using the ODS Excel Destination&lt;/A&gt;, but this servers me well for my report&amp;nbsp;except that space between.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Using&lt;STRONG&gt; SAS 9.4 M4&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Sep 2018 20:37:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-control-row-after-embedding-image-using-proc-gslide/m-p/493628#M21657</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-09-07T20:37:09Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel control row after embedding image using proc gslide</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-control-row-after-embedding-image-using-proc-gslide/m-p/494138#M21660</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13549"&gt;@Cynthia_sas&lt;/a&gt;, I know your good at these, any help is appreciated.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Sep 2018 14:38:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-control-row-after-embedding-image-using-proc-gslide/m-p/494138#M21660</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-09-10T14:38:16Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel control row after embedding image using proc gslide</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-control-row-after-embedding-image-using-proc-gslide/m-p/494233#M21664</link>
      <description>Hi: I'm not sure the GSLIDE approach will give you the control you want. Take a look at this paper &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; at the approach that starts on page 3. There is a macro program that the paper author is using that allows you to post-process the XLSX file and insert images into specific locations. That might give you the type of control you're looking for. Otherwise, I'd recommend opening a track with Tech Support.&lt;BR /&gt;&lt;BR /&gt;Cynthia</description>
      <pubDate>Mon, 10 Sep 2018 17:58:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-control-row-after-embedding-image-using-proc-gslide/m-p/494233#M21664</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-09-10T17:58:48Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel control row after embedding image using proc gslide</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-control-row-after-embedding-image-using-proc-gslide/m-p/494259#M21670</link>
      <description>&lt;P&gt;Thanks, Unfortunately that approach will not work for me since I'm on Linux operating system and can't run x-commands or VB Script. I will open track with SAS Tech support and see what I come up with.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Sep 2018 18:44:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-control-row-after-embedding-image-using-proc-gslide/m-p/494259#M21670</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-09-10T18:44:36Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel control row after embedding image using proc gslide</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-control-row-after-embedding-image-using-proc-gslide/m-p/498573#M21762</link>
      <description>&lt;P&gt;I opened track with SAS Technical Support and got response on this. Unfortunately this did not have solution for the current versions of SAS and hope it will be fixed in future releases.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Sep 2018 20:20:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-control-row-after-embedding-image-using-proc-gslide/m-p/498573#M21762</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-09-24T20:20:25Z</dc:date>
    </item>
  </channel>
</rss>

