<?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: Program creates correct SAS Report but empty Dataset (with column names). Using SAS EG 7.1 in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496691#M31970</link>
    <description>&lt;P&gt;Thanks &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;,&amp;nbsp;I see where I went wrong. In my lack of programming knowledge, I thought it was creating an empty dataset and then populating it with values selected from another table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it not possible to include column definition when creating a new table and populating it this way? I'm not sure if it can be done through column definition but I wanted to eventually changed weighted ratio to xxx% format.&lt;/P&gt;</description>
    <pubDate>Tue, 18 Sep 2018 18:51:29 GMT</pubDate>
    <dc:creator>Luciferene</dc:creator>
    <dc:date>2018-09-18T18:51:29Z</dc:date>
    <item>
      <title>Program creates correct SAS Report but empty Dataset (with column names). Using SAS EG 7.1</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496644#M31963</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Honda;
input CLASSES $ RATIO N;
cards;
C 0.75 500
B 1.00 300
A 1.25 400
;

data Porche;
input  CLASSES $ RATIO N;
cards;
C 0.90 250
B 1.00 100
A 1.25 50
;

PROC SQL;
	CREATE TABLE WORK.COMPARISON ('Car Name'n char, 'Total # of Cars'n num, 'Weighted Ratio'n num);
	SELECT 'Honda' AS 'Car Name'n, sum(N) AS 'Total # of Cars'n, SUM(RATIO * N)/SUM(N) AS 'Weighted Ratio'n FROM WORK.Honda
	UNION
	SELECT 'Porche' AS 'Car Name'n, sum(N) AS 'Total # of Cars'n, SUM(RATIO * N)/SUM(N) AS 'Weighted Ratio'n FROM WORK.Porche;
QUIT;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Basically the problem is self explanatory when you run the above example program I made. The program creates both SAS Report and Dataset, however the report is the only one that contains any data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dataset basically comes out blank with only the column names.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance for your help!&lt;/P&gt;</description>
      <pubDate>Tue, 18 Sep 2018 16:50:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496644#M31963</guid>
      <dc:creator>Luciferene</dc:creator>
      <dc:date>2018-09-18T16:50:59Z</dc:date>
    </item>
    <item>
      <title>Re: Program creates correct SAS Report but empty Dataset (with column names). Using SAS EG 7.1</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496647#M31964</link>
      <description>&lt;P&gt;It is just doing what you asked it to do. You have two statements. One to create an empty dataset and one to select data (from other dataset).&lt;/P&gt;
&lt;P&gt;If you want to create a table then create the table in one step.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;create table x as select a,b,c from y;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If you want to see what is in the data then print that.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once it is in a dataset then you could just print it using normal SAS procedures instead of messing with SQL.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc print data=x;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Sep 2018 16:55:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496647#M31964</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2018-09-18T16:55:52Z</dc:date>
    </item>
    <item>
      <title>Re: Program creates correct SAS Report but empty Dataset (with column names). Using SAS EG 7.1</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496648#M31965</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC SQL;
CREATE TABLE WORK.COMPARISON as
SELECT 'Honda' AS 'Car Name'n
    , sum(N) AS 'Total # of Cars'n
    , SUM(RATIO * N)/SUM(N) AS 'Weighted Ratio'n 
FROM WORK.Honda

UNION

SELECT 'Porche' AS 'Car Name'n
     , sum(N) AS 'Total # of Cars'n
     , SUM(RATIO * N)/SUM(N) AS 'Weighted Ratio'n 
FROM WORK.Porche
;
QUIT;

proc print data=WORK.COMPARISON;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 18 Sep 2018 16:58:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496648#M31965</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2018-09-18T16:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: Program creates correct SAS Report but empty Dataset (with column names). Using SAS EG 7.1</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496651#M31966</link>
      <description>&lt;P&gt;Can you have names with spaces like: Car Name&lt;/P&gt;&lt;P&gt;or does the name need to be like this: Car_Name&lt;/P&gt;&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138205"&gt;@novinosrin&lt;/a&gt;thanks for reminding be about the validvarname = any;&lt;/P&gt;&lt;P&gt;Is the default normally set to validvarname = no?&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>Tue, 18 Sep 2018 17:24:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496651#M31966</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2018-09-18T17:24:04Z</dc:date>
    </item>
    <item>
      <title>Re: Program creates correct SAS Report but empty Dataset (with column names). Using SAS EG 7.1</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496652#M31967</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/122002"&gt;@VDD&lt;/a&gt;&amp;nbsp;yes you can with&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options validvarname=any;
PROC SQL;
	CREATE TABLE WORK.COMPARISON as
	SELECT 'Honda' AS 'Car Name'n, sum(N) AS 'Total # of Cars'n, SUM(RATIO * N)/SUM(N) AS 'Weighted Ratio'n FROM WORK.Honda
	UNION
	SELECT 'Porche' AS 'Car Name'n, sum(N) AS 'Total # of Cars'n, SUM(RATIO * N)/SUM(N) AS 'Weighted Ratio'n FROM WORK.Porche;
QUIT;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 18 Sep 2018 17:06:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496652#M31967</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-09-18T17:06:10Z</dc:date>
    </item>
    <item>
      <title>Re: Program creates correct SAS Report but empty Dataset (with column names). Using SAS EG 7.1</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496659#M31968</link>
      <description>&lt;P&gt;default is set to v7&lt;/P&gt;</description>
      <pubDate>Tue, 18 Sep 2018 17:54:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496659#M31968</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-09-18T17:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: Program creates correct SAS Report but empty Dataset (with column names). Using SAS EG 7.1</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496691#M31970</link>
      <description>&lt;P&gt;Thanks &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;,&amp;nbsp;I see where I went wrong. In my lack of programming knowledge, I thought it was creating an empty dataset and then populating it with values selected from another table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it not possible to include column definition when creating a new table and populating it this way? I'm not sure if it can be done through column definition but I wanted to eventually changed weighted ratio to xxx% format.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Sep 2018 18:51:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496691#M31970</guid>
      <dc:creator>Luciferene</dc:creator>
      <dc:date>2018-09-18T18:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: Program creates correct SAS Report but empty Dataset (with column names). Using SAS EG 7.1</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496697#M31971</link>
      <description>&lt;P&gt;If you want to attach a format to a variable you can use the FORMAT= keyword.&amp;nbsp; You can also force a LENGTH. Or attach an INFORMAT or a LABEL to the variable.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;select
  'SAMPLE' as name length=20 
 ,a/b as ratio format=percent6.2 
from have
;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 18 Sep 2018 19:02:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496697#M31971</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2018-09-18T19:02:15Z</dc:date>
    </item>
    <item>
      <title>Re: Program creates correct SAS Report but empty Dataset (with column names). Using SAS EG 7.1</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496701#M31972</link>
      <description>&lt;P&gt;Oh is it? I never got syntax error even though I didn't set it to any.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On personal note, I should probably add that line to avoid issues in future.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Sep 2018 19:04:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496701#M31972</guid>
      <dc:creator>Luciferene</dc:creator>
      <dc:date>2018-09-18T19:04:56Z</dc:date>
    </item>
    <item>
      <title>Re: Program creates correct SAS Report but empty Dataset (with column names). Using SAS EG 7.1</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496702#M31973</link>
      <description>&lt;P&gt;Programming will be much easier if you just use valid names for your variables and datasets. You can use the LABEL option to place user friendly text for reports.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
CREATE TABLE COMPARISON as
SELECT 'Honda' AS  Car label='Car Name'
    , sum(N) AS N label='Total # of Cars'
    , SUM(RATIO * N)/SUM(N) AS Ratio label='Weighted Ratio'
FROM  Honda
;
quit;

proc print data=comparison label;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 18 Sep 2018 19:10:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496702#M31973</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2018-09-18T19:10:57Z</dc:date>
    </item>
    <item>
      <title>Re: Program creates correct SAS Report but empty Dataset (with column names). Using SAS EG 7.1</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496714#M31975</link>
      <description>&lt;P&gt;Thank you, that's a great suggestion.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I made the edits and now I have some follow up questions.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Honda;
input CLASSES $ RATIO N;
cards;
C 0.75 500
B 1.00 300
A 1.25 400
;

data Porche;
input  CLASSES $ RATIO N;
cards;
C 0.90 250
B 1.00 100
A 1.25 50
;



PROC SQL;
	CREATE TABLE WORK.COMPARISON as
	SELECT 'Zonda' AS Car label='Car Name', sum(N) AS n label='Total # of Cars', SUM(RATIO * N)/SUM(N) AS Ratio Label='Weighted Ratio' format=percent6.2 FROM WORK.Honda
	UNION
	SELECT 'Porche' AS Car, sum(N) AS n, SUM(RATIO * N)/SUM(N) AS Ratio FROM WORK.Porche;
QUIT;

PROC SQL;
	CREATE TABLE WORK.FINAL AS
	SELECT * FROM WORK.COMPARISON
	UNION
	SELECT 'TOTAL' AS CAR,. AS n, SUM(n) AS RATIO FROM WORK.COMPARISON;
QUIT;

PROC PRINT DATA=WORK.FINAL LABEL;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;SAS seems to sort all the rows added&amp;nbsp;by the first column regardless of the order in which they got put in, how would I go about rearranging the rows in the way I want them to be?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example if I had Honda, GM, Toyota, BMW and I wanted them in&amp;nbsp;that order in particular (just for the report) and not sort them alphabetically.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, is it possible for&amp;nbsp;one column to have different formatting? So&amp;nbsp;I would like the final report to show:&lt;/P&gt;&lt;P&gt;Car Name&amp;nbsp;&amp;nbsp;&amp;nbsp; Total # of Cars&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Weighted Ratio&lt;/P&gt;&lt;P&gt;Zonda&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1200&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 97%&lt;/P&gt;&lt;P&gt;Porche&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 400&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 98%&lt;/P&gt;&lt;P&gt;TOTAL&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1600&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Trying to mimic Excel report on SAS is proving to be big challenge in terms of formatting.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EDIT: Just adding on, would it be possible to remove the Obs column in the report?&lt;/P&gt;</description>
      <pubDate>Tue, 18 Sep 2018 19:53:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496714#M31975</guid>
      <dc:creator>Luciferene</dc:creator>
      <dc:date>2018-09-18T19:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: Program creates correct SAS Report but empty Dataset (with column names). Using SAS EG 7.1</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496718#M31976</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/233144"&gt;@Luciferene&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thank you, that's a great suggestion.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I made the edits and now I have some follow up questions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;EDIT: Just adding on, would it be possible to remove the Obs column in the report?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Option NOOBS (no obs=&amp;gt; no observation number)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;PROC PRINT DATA=WORK.FINAL LABEL NOOBS;
RUN;&lt;/PRE&gt;</description>
      <pubDate>Tue, 18 Sep 2018 20:16:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496718#M31976</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-09-18T20:16:45Z</dc:date>
    </item>
    <item>
      <title>Re: Program creates correct SAS Report but empty Dataset (with column names). Using SAS EG 7.1</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496764#M31981</link>
      <description>&lt;P&gt;SQL does not preserve order unless you tell it what variable to order on.&amp;nbsp; You could add a variable to set the order.&lt;/P&gt;
&lt;P&gt;Don't even attempt to put mixed values into the same variable. If you want to produce a report use a reporting procedure, look at PROC PRINT, PROC REPORT, PROC TABULATE, PROC FREQ.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Sep 2018 22:05:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496764#M31981</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2018-09-18T22:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: Program creates correct SAS Report but empty Dataset (with column names). Using SAS EG 7.1</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496773#M31982</link>
      <description>&lt;P&gt;Thank you and also for the explanation. &lt;img id="smileylol" class="emoticon emoticon-smileylol" src="https://communities.sas.com/i/smilies/16x16_smiley-lol.png" alt="Smiley LOL" title="Smiley LOL" /&gt; I&amp;nbsp;just saw&amp;nbsp;NOOBS on email preview and was confused.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Sep 2018 22:20:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496773#M31982</guid>
      <dc:creator>Luciferene</dc:creator>
      <dc:date>2018-09-18T22:20:58Z</dc:date>
    </item>
    <item>
      <title>Re: Program creates correct SAS Report but empty Dataset (with column names). Using SAS EG 7.1</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496775#M31983</link>
      <description>&lt;P&gt;Okay I'll try doing it with those methods. Thanks for the guidance!&lt;/P&gt;</description>
      <pubDate>Tue, 18 Sep 2018 22:21:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Program-creates-correct-SAS-Report-but-empty-Dataset-with-column/m-p/496775#M31983</guid>
      <dc:creator>Luciferene</dc:creator>
      <dc:date>2018-09-18T22:21:50Z</dc:date>
    </item>
  </channel>
</rss>

