<?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 Excel is generated but no data. in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Excel-is-generated-but-no-data/m-p/698580#M37529</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ODS EXCEL FILE='/Reports/Daily_delta1.xlsx'
options (sheet_name='CRM' embedded_titles='yes');
title "CRM Indicators By Portfolio on the Daily Delta Files from Equifax";

proc sql;
create table indicators as 
select *
FROM RESULTS;
QUIT;&lt;BR /&gt;ods&amp;nbsp;excel&amp;nbsp;close;&lt;BR /&gt;please&amp;nbsp;help&amp;nbsp;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 13 Nov 2020 07:30:40 GMT</pubDate>
    <dc:creator>ss171</dc:creator>
    <dc:date>2020-11-13T07:30:40Z</dc:date>
    <item>
      <title>Excel is generated but no data.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Excel-is-generated-but-no-data/m-p/698580#M37529</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ODS EXCEL FILE='/Reports/Daily_delta1.xlsx'
options (sheet_name='CRM' embedded_titles='yes');
title "CRM Indicators By Portfolio on the Daily Delta Files from Equifax";

proc sql;
create table indicators as 
select *
FROM RESULTS;
QUIT;&lt;BR /&gt;ods&amp;nbsp;excel&amp;nbsp;close;&lt;BR /&gt;please&amp;nbsp;help&amp;nbsp;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 13 Nov 2020 07:30:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Excel-is-generated-but-no-data/m-p/698580#M37529</guid>
      <dc:creator>ss171</dc:creator>
      <dc:date>2020-11-13T07:30:40Z</dc:date>
    </item>
    <item>
      <title>Re: Excel is generated but no data.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Excel-is-generated-but-no-data/m-p/698581#M37530</link>
      <description>&lt;P&gt;A CREATE TABLE statement in SQL does exactly that, it creates a dataset, but it does not produce output for sending to ODS. If you want output from SQL, omit the CREATE TABLE and just use a SELECT:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
select *
from results;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;A better way to simply send a table to the ODS is PROC PRINT:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc print data=result noobs;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If you want the observation numbers printed, omit the NOOBS option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2020 07:44:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Excel-is-generated-but-no-data/m-p/698581#M37530</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-11-13T07:44:33Z</dc:date>
    </item>
  </channel>
</rss>

