<?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: Solving a SAS Challenge in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530246#M6905</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/257758"&gt;@KEDWARD50&lt;/a&gt; remove the /* */ that is around your library assignment.&lt;/P&gt;
&lt;P&gt;the system needs the libname reassigned.&amp;nbsp; your first error should clean up the remaining errors.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 25 Jan 2019 22:17:26 GMT</pubDate>
    <dc:creator>VDD</dc:creator>
    <dc:date>2019-01-25T22:17:26Z</dc:date>
    <item>
      <title>Solving a SAS Challenge</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530233#M6903</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc means data=pg1.np_multiyr noprint;
    var Visitors;
    class Region Year;
    ways 2;
    output out=work.top3list(drop=_freq_ _type_)
           sum=TotalVisitors /*sum total visitors*/
    	   idgroup(max(Visitors) /*find the max of visitors*/
    	   out[3] /*top 3*/
    	   (Visitors ParkName)=); /*output columns for top 3 parks*/
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I need help editing this SAS code.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jan 2019 21:43:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530233#M6903</guid>
      <dc:creator>KEDWARD50</dc:creator>
      <dc:date>2019-01-25T21:43:12Z</dc:date>
    </item>
    <item>
      <title>Re: Solving a SAS Challenge</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530237#M6904</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="error1.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/26587i2BB6F0AED878CE07/image-size/large?v=v2&amp;amp;px=999" role="button" title="error1.jpg" alt="error1.jpg" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="error2.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/26588iD04905F97911A63D/image-size/large?v=v2&amp;amp;px=999" role="button" title="error2.jpg" alt="error2.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;These are the error messages received.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jan 2019 21:44:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530237#M6904</guid>
      <dc:creator>KEDWARD50</dc:creator>
      <dc:date>2019-01-25T21:44:24Z</dc:date>
    </item>
    <item>
      <title>Re: Solving a SAS Challenge</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530246#M6905</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/257758"&gt;@KEDWARD50&lt;/a&gt; remove the /* */ that is around your library assignment.&lt;/P&gt;
&lt;P&gt;the system needs the libname reassigned.&amp;nbsp; your first error should clean up the remaining errors.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jan 2019 22:17:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530246#M6905</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-01-25T22:17:26Z</dc:date>
    </item>
    <item>
      <title>Re: Solving a SAS Challenge</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530247#M6906</link>
      <description>&lt;P&gt;I still got the same errors.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jan 2019 22:19:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530247#M6906</guid>
      <dc:creator>KEDWARD50</dc:creator>
      <dc:date>2019-01-25T22:19:48Z</dc:date>
    </item>
    <item>
      <title>Re: Solving a SAS Challenge</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530254#M6907</link>
      <description>Run a proc contents on the data set you're expecting to be there. Currently your challenge is telling SAS where to find the data, all your error stem from that issue. The input data set doesn't exist for some reason.</description>
      <pubDate>Fri, 25 Jan 2019 22:31:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530254#M6907</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-01-25T22:31:55Z</dc:date>
    </item>
    <item>
      <title>Re: Solving a SAS Challenge</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530255#M6908</link>
      <description>&lt;P&gt;when you run this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="sasSource" style="background-color: transparent; color: #000000; font-family: Consolas,Courier,&amp;amp;quot; courier new&amp;amp;quot;; font-size: 16px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;71&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; libname pg1 "/home/kedward50/EPG194/data";&lt;/DIV&gt;
&lt;DIV class="sasSource" style="background-color: transparent; color: #000000; font-family: Consolas,Courier,&amp;amp;quot; courier new&amp;amp;quot;; font-size: 16px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;do you see this&lt;/DIV&gt;
&lt;DIV class="sasNote" id="sasLogNote1_1548455418621" style="background-color: transparent; color: #0000ff; font-family: Consolas,Courier,&amp;amp;quot; courier new&amp;amp;quot;; font-size: 16px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;NOTE: Libref PG1 was successfully assigned as follows:&lt;/DIV&gt;
&lt;DIV class="sasNote" style="background-color: transparent; color: #0000ff; font-family: Consolas,Courier,&amp;amp;quot; courier new&amp;amp;quot;; font-size: 16px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Engine:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; V9&lt;/DIV&gt;
&lt;DIV class="sasNote" style="background-color: transparent; color: #0000ff; font-family: Consolas,Courier,&amp;amp;quot; courier new&amp;amp;quot;; font-size: 16px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Physical Name: /home/kedward50/EPG194/data&lt;/DIV&gt;</description>
      <pubDate>Fri, 25 Jan 2019 22:32:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530255#M6908</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-01-25T22:32:12Z</dc:date>
    </item>
    <item>
      <title>Re: Solving a SAS Challenge</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530256#M6909</link>
      <description>&lt;P&gt;Yes I do!&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jan 2019 22:35:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530256#M6909</guid>
      <dc:creator>KEDWARD50</dc:creator>
      <dc:date>2019-01-25T22:35:42Z</dc:date>
    </item>
    <item>
      <title>Re: Solving a SAS Challenge</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530257#M6910</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 70         
 71         proc means data=pg1.np_multiyr noprint;
 72             var Visitors;
 73             class Region Year;
 74             ways 2;
 75             output out=work.top3list(drop=_freq_ _type_)
 76                    sum=TotalVisitors /*sum total visitors*/
 77                idgroup(max(Visitors) /*find the max of visitors*/
 78                out[3] /*top 3*/
 79                (Visitors ParkName)=); /*output columns for top 3 parks*/
 80         run;
 
 NOTE: There were 30652 observations read from the data set PG1.NP_MULTIYR.
 NOTE: The data set WORK.TOP3LIST has 49 observations and 9 variables.
 NOTE: PROCEDURE MEANS used (Total process time):
       real time           0.02 seconds
       user cpu time       0.01 seconds
       system cpu time     0.01 seconds
       memory              8033.70k
       OS Memory           35000.00k
       Timestamp           01/25/2019 10:36:00 PM
       Step Count                        28  Switch Count  2
       Page Faults                       0
       Page Reclaims                     2128
       Page Swaps                        0
       Voluntary Context Switches        210
       Involuntary Context Switches      0
       Block Input Operations            12800
       Block Output Operations           264
       
 
 81         
 82         OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 94     &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;works for me&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/257758"&gt;@KEDWARD50&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc contents pg1.np_multiyr;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="c proctitle"&gt;The CONTENTS Procedure&lt;/P&gt;
&lt;H1 class="contentprocname toc"&gt;The Contents Procedure&lt;/H1&gt;
&lt;SECTION&gt;
&lt;H1 class="contentfolder toc"&gt;PG1.NP_MULTIYR&lt;/H1&gt;
&lt;ARTICLE aria-label="Attributes"&gt;
&lt;H1 class="contentitem toc"&gt;Attributes&lt;/H1&gt;
&lt;TABLE class="table" style="border-spacing: 0;" aria-label="Attributes"&gt;&lt;CAPTION aria-label="Attributes"&gt;&amp;nbsp;&lt;/CAPTION&gt;&lt;COLGROUP&gt;&lt;COL /&gt;&lt;COL /&gt;&lt;COL /&gt;&lt;COL /&gt;&lt;/COLGROUP&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;Data Set Name&lt;/TH&gt;
&lt;TD class="data"&gt;PG1.NP_MULTIYR&lt;/TD&gt;
&lt;TH class="rowheader" scope="row"&gt;Observations&lt;/TH&gt;
&lt;TD class="data"&gt;30652&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;Member Type&lt;/TH&gt;
&lt;TD class="data"&gt;DATA&lt;/TD&gt;
&lt;TH class="rowheader" scope="row"&gt;Variables&lt;/TH&gt;
&lt;TD class="data"&gt;11&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;Engine&lt;/TH&gt;
&lt;TD class="data"&gt;V9&lt;/TD&gt;
&lt;TH class="rowheader" scope="row"&gt;Indexes&lt;/TH&gt;
&lt;TD class="data"&gt;0&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;Created&lt;/TH&gt;
&lt;TD class="data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TH class="rowheader" scope="row"&gt;Observation Length&lt;/TH&gt;
&lt;TD class="data"&gt;216&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;Last Modified&lt;/TH&gt;
&lt;TD class="data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TH class="rowheader" scope="row"&gt;Deleted Observations&lt;/TH&gt;
&lt;TD class="data"&gt;0&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;Protection&lt;/TH&gt;
&lt;TD class="data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TH class="rowheader" scope="row"&gt;Compressed&lt;/TH&gt;
&lt;TD class="data"&gt;NO&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;Data Set Type&lt;/TH&gt;
&lt;TD class="data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TH class="rowheader" scope="row"&gt;Sorted&lt;/TH&gt;
&lt;TD class="data"&gt;NO&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;Label&lt;/TH&gt;
&lt;TD class="data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TH class="rowheader" scope="row"&gt;&amp;nbsp;&lt;/TH&gt;
&lt;TD class="data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;Data Representation&lt;/TH&gt;
&lt;TD class="data"&gt;SOLARIS_X86_64, LINUX_X86_64, ALPHA_TRU64, LINUX_IA64&lt;/TD&gt;
&lt;TH class="rowheader" scope="row"&gt;&amp;nbsp;&lt;/TH&gt;
&lt;TD class="data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;Encoding&lt;/TH&gt;
&lt;TD class="data"&gt;utf-8 Unicode (UTF-8)&lt;/TD&gt;
&lt;TH class="rowheader" scope="row"&gt;&amp;nbsp;&lt;/TH&gt;
&lt;TD class="data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/ARTICLE&gt;
&lt;ARTICLE id="IDX1" aria-label="Engine/Host Information"&gt;
&lt;H1 class="contentitem toc"&gt;Engine/Host Information&lt;/H1&gt;
&lt;TABLE class="table" style="border-spacing: 0;" aria-label="Engine/Host Information"&gt;&lt;CAPTION aria-label="Engine/Host Information"&gt;&amp;nbsp;&lt;/CAPTION&gt;&lt;COLGROUP&gt;&lt;COL /&gt;&lt;COL /&gt;&lt;/COLGROUP&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="c b header" colspan="2" scope="colgroup"&gt;Engine/Host Dependent Information&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;Data Set Page Size&lt;/TH&gt;
&lt;TD class="data"&gt;131072&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;Number of Data Set Pages&lt;/TH&gt;
&lt;TD class="data"&gt;51&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;First Data Page&lt;/TH&gt;
&lt;TD class="data"&gt;1&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;Max Obs per Page&lt;/TH&gt;
&lt;TD class="data"&gt;606&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;Obs in First Data Page&lt;/TH&gt;
&lt;TD class="data"&gt;590&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;Number of Data Set Repairs&lt;/TH&gt;
&lt;TD class="data"&gt;0&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;Filename&lt;/TH&gt;
&lt;TD class="data"&gt;/home/&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;/EPG194/data/np_multiyr.sas7bdat&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;Release Created&lt;/TH&gt;
&lt;TD class="data"&gt;9.0401M5&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;Host Created&lt;/TH&gt;
&lt;TD class="data"&gt;Linux&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;Inode Number&lt;/TH&gt;
&lt;TD class="data"&gt;2214828782&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;Access Permission&lt;/TH&gt;
&lt;TD class="data"&gt;rw-r--r--&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;Owner Name&lt;/TH&gt;
&lt;TD class="data"&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;File Size&lt;/TH&gt;
&lt;TD class="data"&gt;7MB&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;File Size (bytes)&lt;/TH&gt;
&lt;TD class="data"&gt;6815744&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/ARTICLE&gt;
&lt;ARTICLE id="IDX2" aria-label="Variables"&gt;
&lt;H1 class="contentitem toc"&gt;Variables&lt;/H1&gt;
&lt;TABLE class="table" style="border-spacing: 0;" aria-label="Variables"&gt;&lt;CAPTION aria-label="Variables"&gt;&amp;nbsp;&lt;/CAPTION&gt;&lt;COLGROUP&gt;&lt;COL /&gt;&lt;/COLGROUP&gt;&lt;COLGROUP&gt;&lt;COL /&gt;&lt;COL /&gt;&lt;COL /&gt;&lt;COL /&gt;&lt;COL /&gt;&lt;COL /&gt;&lt;/COLGROUP&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="c b header" colspan="7" scope="colgroup"&gt;Alphabetic List of Variables and Attributes&lt;/TH&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r b header" scope="col"&gt;#&lt;/TH&gt;
&lt;TH class="b header" scope="col"&gt;Variable&lt;/TH&gt;
&lt;TH class="b header" scope="col"&gt;Type&lt;/TH&gt;
&lt;TH class="r b header" scope="col"&gt;Len&lt;/TH&gt;
&lt;TH class="b header" scope="col"&gt;Format&lt;/TH&gt;
&lt;TH class="b header" scope="col"&gt;Informat&lt;/TH&gt;
&lt;TH class="b header" scope="col"&gt;Label&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;9&lt;/TH&gt;
&lt;TD class="data"&gt;Camping&lt;/TD&gt;
&lt;TD class="data"&gt;Num&lt;/TD&gt;
&lt;TD class="r data"&gt;8&lt;/TD&gt;
&lt;TD class="data"&gt;COMMA12.&lt;/TD&gt;
&lt;TD class="data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;7&lt;/TH&gt;
&lt;TD class="data"&gt;Month&lt;/TD&gt;
&lt;TD class="data"&gt;Num&lt;/TD&gt;
&lt;TD class="r data"&gt;8&lt;/TD&gt;
&lt;TD class="data"&gt;BEST12.&lt;/TD&gt;
&lt;TD class="data"&gt;BEST12.&lt;/TD&gt;
&lt;TD class="data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;11&lt;/TH&gt;
&lt;TD class="data"&gt;OtherCamping&lt;/TD&gt;
&lt;TD class="data"&gt;Num&lt;/TD&gt;
&lt;TD class="r data"&gt;8&lt;/TD&gt;
&lt;TD class="data"&gt;COMMA12.&lt;/TD&gt;
&lt;TD class="data"&gt;COMMA12.&lt;/TD&gt;
&lt;TD class="data"&gt;Concessioner Camping&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;10&lt;/TH&gt;
&lt;TD class="data"&gt;OtherLodging&lt;/TD&gt;
&lt;TD class="data"&gt;Num&lt;/TD&gt;
&lt;TD class="r data"&gt;8&lt;/TD&gt;
&lt;TD class="data"&gt;COMMA12.&lt;/TD&gt;
&lt;TD class="data"&gt;COMMA12.&lt;/TD&gt;
&lt;TD class="data"&gt;Concessioner Lodging&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;4&lt;/TH&gt;
&lt;TD class="data"&gt;ParkName&lt;/TD&gt;
&lt;TD class="data"&gt;Char&lt;/TD&gt;
&lt;TD class="r data"&gt;115&lt;/TD&gt;
&lt;TD class="data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;1&lt;/TH&gt;
&lt;TD class="data"&gt;Region&lt;/TD&gt;
&lt;TD class="data"&gt;Char&lt;/TD&gt;
&lt;TD class="r data"&gt;17&lt;/TD&gt;
&lt;TD class="data"&gt;$CHAR17.&lt;/TD&gt;
&lt;TD class="data"&gt;$CHAR17.&lt;/TD&gt;
&lt;TD class="data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;5&lt;/TH&gt;
&lt;TD class="data"&gt;State&lt;/TD&gt;
&lt;TD class="data"&gt;Char&lt;/TD&gt;
&lt;TD class="r data"&gt;2&lt;/TD&gt;
&lt;TD class="data"&gt;$CHAR2.&lt;/TD&gt;
&lt;TD class="data"&gt;$CHAR2.&lt;/TD&gt;
&lt;TD class="data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;2&lt;/TH&gt;
&lt;TD class="data"&gt;Type&lt;/TD&gt;
&lt;TD class="data"&gt;Char&lt;/TD&gt;
&lt;TD class="r data"&gt;28&lt;/TD&gt;
&lt;TD class="data"&gt;$CHAR28.&lt;/TD&gt;
&lt;TD class="data"&gt;$CHAR28.&lt;/TD&gt;
&lt;TD class="data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;3&lt;/TH&gt;
&lt;TD class="data"&gt;UnitCode&lt;/TD&gt;
&lt;TD class="data"&gt;Char&lt;/TD&gt;
&lt;TD class="r data"&gt;4&lt;/TD&gt;
&lt;TD class="data"&gt;$CHAR4.&lt;/TD&gt;
&lt;TD class="data"&gt;$CHAR4.&lt;/TD&gt;
&lt;TD class="data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;8&lt;/TH&gt;
&lt;TD class="data"&gt;Visitors&lt;/TD&gt;
&lt;TD class="data"&gt;Num&lt;/TD&gt;
&lt;TD class="r data"&gt;8&lt;/TD&gt;
&lt;TD class="data"&gt;COMMA12.&lt;/TD&gt;
&lt;TD class="data"&gt;COMMA12.&lt;/TD&gt;
&lt;TD class="data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;6&lt;/TH&gt;
&lt;TD class="data"&gt;Year&lt;/TD&gt;
&lt;TD class="data"&gt;Num&lt;/TD&gt;
&lt;TD class="r data"&gt;8&lt;/TD&gt;
&lt;TD class="data"&gt;BEST12.&lt;/TD&gt;
&lt;TD class="data"&gt;BEST12.&lt;/TD&gt;
&lt;TD class="data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/ARTICLE&gt;
&lt;/SECTION&gt;</description>
      <pubDate>Fri, 25 Jan 2019 23:13:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530257#M6910</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-01-25T23:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: Solving a SAS Challenge</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530258#M6911</link>
      <description>What am I possibly missing?&lt;BR /&gt;</description>
      <pubDate>Fri, 25 Jan 2019 22:39:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530258#M6911</guid>
      <dc:creator>KEDWARD50</dc:creator>
      <dc:date>2019-01-25T22:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: Solving a SAS Challenge</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530260#M6912</link>
      <description>&lt;P&gt;In your libraries, is there anything listed under your TOP3LIST?&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TOP3LIST.jpg" style="width: 257px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/26590i8DD1751307540D31/image-size/large?v=v2&amp;amp;px=999" role="button" title="TOP3LIST.jpg" alt="TOP3LIST.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jan 2019 22:42:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530260#M6912</guid>
      <dc:creator>KEDWARD50</dc:creator>
      <dc:date>2019-01-25T22:42:25Z</dc:date>
    </item>
    <item>
      <title>Re: Solving a SAS Challenge</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530262#M6913</link>
      <description>&lt;P&gt;first off your PG1 library has noting listed in it based on that your picture doesn't have the little &amp;gt; in front of it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you need to assign PG1 to the correct location that contains the np_multiyr data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jan 2019 22:49:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530262#M6913</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-01-25T22:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: Solving a SAS Challenge</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530269#M6914</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/257758"&gt;@KEDWARD50&lt;/a&gt;&amp;nbsp; I'm guessing that you're using your own custom SAS installation. Did you run the programs to set up the data for the course? Was the data for the course created correctly and you've been able to work with it historically?&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;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jan 2019 23:06:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530269#M6914</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-01-25T23:06:58Z</dc:date>
    </item>
    <item>
      <title>Re: Solving a SAS Challenge</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530292#M6916</link>
      <description>&lt;P&gt;Hi:&lt;BR /&gt;The PG1 folder (if you ran the setup instructions correctly) should have multiple sub-folders (like activities, demos, data, practices and output) and assuming you ran ALL of the setup instructions, your DATA subfolder should have files in it. &lt;BR /&gt;&lt;BR /&gt;The e-learning developers just changed the instructions for SAS OnDemand for Academics on Jan 18th and so, it would be even easier to go back and rerun the startup instructions, just to be sure you have made the data correctly.&lt;BR /&gt;&lt;BR /&gt;There's a video here: &lt;A href="https://youtu.be/8sI_UsNvIHE" target="_blank" rel="noopener"&gt;https://youtu.be/8sI_UsNvIHE&lt;/A&gt; for creating the Programming 1 files using SAS OnDemand for Academics. It steps you through the entire new process.&lt;BR /&gt;&lt;BR /&gt;This is the solution code:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="use_np_multiyr.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/26593iDD74733F4D7EEA89/image-size/large?v=v2&amp;amp;px=999" role="button" title="use_np_multiyr.png" alt="use_np_multiyr.png" /&gt;&lt;/span&gt;&lt;BR /&gt;It looks like you've got the correct code, so you just need to have the correct LIBNAME statement for PG1 and you need to be sure that your data files were created correctly in the PG1 folder.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For SAS OnDemand for Academics, the location should be:&lt;/P&gt;
&lt;P&gt;libname pg1 "/home/&amp;lt;youruserid&amp;gt;/EPG194/data";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For SAS University Edition, the location should be:&lt;/P&gt;
&lt;P&gt;libname pg1 "/folders/myfolders/EPG194/data";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But, if you expand the PG1 library in the LIBRARIES pane and you do NOT see data files in the PG1 library, that implies that you did not successfully make the data for the class. There are instructions in the Course Overview and Data Setup section of the course for how to make the data and the video show these same instructions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Sat, 26 Jan 2019 02:16:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530292#M6916</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-01-26T02:16:54Z</dc:date>
    </item>
    <item>
      <title>Re: Solving a SAS Challenge</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530630#M6935</link>
      <description>&lt;P&gt;Nothing is listed under Top3List&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jan 2019 14:23:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530630#M6935</guid>
      <dc:creator>KEDWARD50</dc:creator>
      <dc:date>2019-01-28T14:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: Solving a SAS Challenge</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530631#M6936</link>
      <description>&lt;P&gt;I'm going to try this now. Thanks you!&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jan 2019 14:24:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530631#M6936</guid>
      <dc:creator>KEDWARD50</dc:creator>
      <dc:date>2019-01-28T14:24:01Z</dc:date>
    </item>
    <item>
      <title>Re: Solving a SAS Challenge</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530646#M6937</link>
      <description>&lt;P&gt;Thanks so much everyone!&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jan 2019 15:18:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Solving-a-SAS-Challenge/m-p/530646#M6937</guid>
      <dc:creator>KEDWARD50</dc:creator>
      <dc:date>2019-01-28T15:18:26Z</dc:date>
    </item>
  </channel>
</rss>

