<?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: Juletip #1 - Easy generating nice Excel Sheets in SAS Community Nordic</title>
    <link>https://communities.sas.com/t5/SAS-Community-Nordic/Juletip-1-Easy-generating-nice-Excel-Sheets/m-p/417721#M126</link>
    <description>Najs!</description>
    <pubDate>Fri, 01 Dec 2017 11:10:04 GMT</pubDate>
    <dc:creator>jmic_nyk</dc:creator>
    <dc:date>2017-12-01T11:10:04Z</dc:date>
    <item>
      <title>Juletip #1 - Easy generating nice Excel Sheets</title>
      <link>https://communities.sas.com/t5/SAS-Community-Nordic/Juletip-1-Easy-generating-nice-Excel-Sheets/m-p/417718#M125</link>
      <description>&lt;P&gt;Hello everybody&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Welcome back to the &lt;FONT color="#FF0000"&gt;SAS Juletip Advent Calendar&lt;/FONT&gt; - Hurray&amp;nbsp;&lt;img id="smileywink" class="emoticon emoticon-smileywink" src="https://communities.sas.com/i/smilies/16x16_smiley-wink.png" alt="Smiley Wink" title="Smiley Wink" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As old friends of Juletip already knows, we will post a small SAS tip each working day during December containing different Tips &amp;amp; Tricks using different parts of The SAS Platform.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The 70 Juletip we already have posted the previous years can all be found &lt;A title="All Previous Juletips" href="https://communities.sas.com/t5/forums/searchpage/tab/message?q=juletip&amp;amp;collapse_discussion=true" target="_blank"&gt;here&lt;/A&gt;&amp;nbsp;in Santas big Bag.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Education and gaining new knowledge is always important and the Juletip is a informal way of acquiring new skills.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Perhaps you have read &lt;A href="https://blogs.sas.com/content/author/gertnissen/" target="_blank"&gt;my Blogs&lt;/A&gt;&amp;nbsp;about staying relevant and how to learn?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As always we encourage you to be active in the SAS Community - Please like tips you find useful, and comment if you have additional tips and ask questions if you need more info - everybody can pitch in with comments and answers,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;Gert Nissen&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-------------------------------------&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Juletip #1 - Easy generating nice Excel Sheets&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This tip is from a Blog by&amp;nbsp;&lt;SPAN class="posted-by"&gt;&lt;SPAN class="reviewer"&gt;&lt;A title="Posts by Chevell Parker" href="https://blogs.sas.com/content/sgf/2017/02/20/tips-for-using-the-ods-excel-destination/" rel="author" target="_blank"&gt;Chevell Parker&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;and is a very good introduction to the ODS Excel Destination which generates native Microsoft Excel formatted files. This small tip is to inspire to start using the ODS Excel Destination (SAS 9.4M3) instead of Older Destinations (for example, the MSOffice2K or the ExcelXP tagsets). You will find much more info in the SAS&amp;nbsp;&lt;A href="https://blogs.sas.com/content/?s=ODS+Excel" target="_blank"&gt;Blogs about ODS Excel&lt;/A&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="posted-by"&gt;&lt;SPAN class="reviewer"&gt;&lt;SPAN&gt;Just copy/paste the code below and try to run it on your SAS environment (perhaps you will need to change the path) or just have a look at the attached screen shot.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods excel file="c:\temp.xlsx" options(start_at="3,3"
frozen_headers="5"
frozen_rowheaders="3"
autofilter="1-5"
sheet_name="Sales Report"
row_repeat="2"
embedded_titles="yes");
 
proc print data=sashelp.orsales; 
title "Sales Report for the Year 1999";
run;
 
ods excel close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;More Info:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Visit &lt;A href="https://blogs.sas.com/content/sgf/2017/02/20/tips-for-using-the-ods-excel-destination/" target="_blank"&gt;Tips for Using the ODS Excel Destination&lt;/A&gt;&amp;nbsp;for more options and explanations&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;Link to the &lt;A href="http://go.documentation.sas.com/?docsetId=odsug&amp;amp;docsetTarget=p09n5pw9ol0897n1qe04zeur27rv.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=da" target="_blank"&gt;ODS Excel Documentation&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;As part of your learning experience I'm sure you will learn of lot from visiting our Community dedicated to "&lt;A href="https://communities.sas.com/t5/ODS-and-Base-Reporting/bd-p/ods_base_reporting" target="_blank"&gt;The SAS Output Delivery System and reporting techniques&lt;/A&gt;"&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have read my Blog, you will see that SAS has many different offerings for learning, like:&amp;nbsp;&lt;A href="https://communities.sas.com/t5/Ask-the-Expert/Ask-the-Expert-Producing-PPT-EXCEL-and-EPUB-books-in-SAS/ta-p/415293" target="_blank"&gt;Ask The Expert&lt;/A&gt;, &lt;A href="http://support.sas.com/resources/papers/proceedings17/SAS0710-2017.pdf" target="_blank"&gt;Papers&lt;/A&gt; etc. I have compiled an small overview &lt;A href="https://blogs.sas.com/content/hiddeninsights/2017/11/27/lifelong-learning-data-science/" target="_blank"&gt;here&lt;/A&gt;.&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-inline" image-alt="Juletip1 Excel ODS destination.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/16955i42D49A17CAF87AB0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Juletip1 Excel ODS destination.png" alt="Juletip1 Excel ODS destination.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Dec 2017 11:03:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Community-Nordic/Juletip-1-Easy-generating-nice-Excel-Sheets/m-p/417718#M125</guid>
      <dc:creator>GertNissen</dc:creator>
      <dc:date>2017-12-01T11:03:08Z</dc:date>
    </item>
    <item>
      <title>Re: Juletip #1 - Easy generating nice Excel Sheets</title>
      <link>https://communities.sas.com/t5/SAS-Community-Nordic/Juletip-1-Easy-generating-nice-Excel-Sheets/m-p/417721#M126</link>
      <description>Najs!</description>
      <pubDate>Fri, 01 Dec 2017 11:10:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Community-Nordic/Juletip-1-Easy-generating-nice-Excel-Sheets/m-p/417721#M126</guid>
      <dc:creator>jmic_nyk</dc:creator>
      <dc:date>2017-12-01T11:10:04Z</dc:date>
    </item>
  </channel>
</rss>

