<?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: Exported excel files from EG are without Author in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Exported-excel-files-from-EG-are-without-Author/m-p/859131#M42270</link>
    <description>Thank you Mark, really appreciate your response, will try to use this workaround , however I need to force the users to have the Author and remove any other options for them, any idea if this even something can be fixed ?</description>
    <pubDate>Thu, 16 Feb 2023 08:22:59 GMT</pubDate>
    <dc:creator>teltarrass</dc:creator>
    <dc:date>2023-02-16T08:22:59Z</dc:date>
    <item>
      <title>Exported excel files from EG are without Author</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Exported-excel-files-from-EG-are-without-Author/m-p/858924#M42258</link>
      <description>&lt;P&gt;Trying to Export tables from EG as Excel file, if I chose share then excel I can find the Author on the extracted file,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;however if I followed the below steps I can't find the Author&lt;/P&gt;&lt;P&gt;share&amp;gt; export&amp;gt; file tybe: excel&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;anyone knows how to fix this ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Feb 2023 12:57:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Exported-excel-files-from-EG-are-without-Author/m-p/858924#M42258</guid>
      <dc:creator>teltarrass</dc:creator>
      <dc:date>2023-02-15T12:57:49Z</dc:date>
    </item>
    <item>
      <title>Re: Exported excel files from EG are without Author</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Exported-excel-files-from-EG-are-without-Author/m-p/858932#M42259</link>
      <description>&lt;P&gt;What is there to fix? As you stated, if you choose Share -&amp;gt; Send to Microsoft Excel, the author information is properly populated. If you want more control over the metadata in the Excel file you created, you should look into using code and ODS EXCEL to produce your output. For example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods excel file="c:\temp\myExcelReport.xlsx" 
	author="SAS Jedi"
	title="My Cars Report"
	category="Special CARS report"
	comments="See SASHELP.CARS for the source data"
	keywords="CARS REPORT SAS JEDI"
;
ods excel options(sheet_name="Detail Report");
ods noproctitle;
proc sql;
select * from sashelp.cars;
quit;
ods excel options(sheet_name="Summary Stats");
proc means data=sashelp.cars min mean median max;
	var MSRP MPG_Highway;
	class Origin;
run;
ods excel close;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Produces a nice Excel report with this metadata:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SASJedi_0-1676469745190.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/80425iF24745B0B8295B93/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SASJedi_0-1676469745190.png" alt="SASJedi_0-1676469745190.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;May the SAS be with you&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":beaming_face_with_smiling_eyes:"&gt;😁&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Mark&lt;/P&gt;</description>
      <pubDate>Wed, 15 Feb 2023 14:02:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Exported-excel-files-from-EG-are-without-Author/m-p/858932#M42259</guid>
      <dc:creator>SASJedi</dc:creator>
      <dc:date>2023-02-15T14:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: Exported excel files from EG are without Author</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Exported-excel-files-from-EG-are-without-Author/m-p/859131#M42270</link>
      <description>Thank you Mark, really appreciate your response, will try to use this workaround , however I need to force the users to have the Author and remove any other options for them, any idea if this even something can be fixed ?</description>
      <pubDate>Thu, 16 Feb 2023 08:22:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Exported-excel-files-from-EG-are-without-Author/m-p/859131#M42270</guid>
      <dc:creator>teltarrass</dc:creator>
      <dc:date>2023-02-16T08:22:59Z</dc:date>
    </item>
    <item>
      <title>Re: Exported excel files from EG are without Author</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Exported-excel-files-from-EG-are-without-Author/m-p/859178#M42273</link>
      <description>&lt;P&gt;I guess I'm not understanding the dilemma here. Why not tell just them to use&amp;nbsp;&lt;SPAN&gt;Share -&amp;gt; Send to Microsoft Excel to produce Excel files? The feature you want is already there. As far as I can determine, there is nothing that needs to be "fixed". The details of&amp;nbsp;&lt;EM&gt;what&lt;/EM&gt; is currently happening that produces an incorrect result (describe the process, what's wrong, and the ideal result) and&amp;nbsp;&lt;EM&gt;why&lt;/EM&gt;&amp;nbsp;the already-provided option isn't resolving the problem would&amp;nbsp;be helpful.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Feb 2023 13:10:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Exported-excel-files-from-EG-are-without-Author/m-p/859178#M42273</guid>
      <dc:creator>SASJedi</dc:creator>
      <dc:date>2023-02-16T13:10:39Z</dc:date>
    </item>
  </channel>
</rss>

