<?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: How to create a sas dataset using excel table name with space in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-sas-dataset-using-excel-table-name-with-space/m-p/296389#M62082</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options validvarname=any;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sun, 04 Sep 2016 16:32:11 GMT</pubDate>
    <dc:creator>Haikuo</dc:creator>
    <dc:date>2016-09-04T16:32:11Z</dc:date>
    <item>
      <title>How to create a sas dataset using excel table name with space</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-sas-dataset-using-excel-table-name-with-space/m-p/296386#M62081</link>
      <description>&lt;P&gt;I need to create a SAS dataset using&amp;nbsp;&amp;nbsp;excel table name with space. I have tried below which is not working.&lt;/P&gt;&lt;PRE&gt;libname xlsFile XLSX "/user/path/file.xlsm";
options validvarname=v7;


PROC SQL;
    create table work.excel_table as 
	(select * from xlsFile.'first Sheet$'n);
 quit;&lt;/PRE&gt;</description>
      <pubDate>Sun, 04 Sep 2016 14:53:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-sas-dataset-using-excel-table-name-with-space/m-p/296386#M62081</guid>
      <dc:creator>jayakumarmm</dc:creator>
      <dc:date>2016-09-04T14:53:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a sas dataset using excel table name with space</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-sas-dataset-using-excel-table-name-with-space/m-p/296389#M62082</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options validvarname=any;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 04 Sep 2016 16:32:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-sas-dataset-using-excel-table-name-with-space/m-p/296389#M62082</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2016-09-04T16:32:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a sas dataset using excel table name with space</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-sas-dataset-using-excel-table-name-with-space/m-p/296391#M62084</link>
      <description>&lt;P&gt;I am still getting error.i.e. not to identify the Sheet name due to space issue.&lt;/P&gt;&lt;P&gt;My actual issue with Excel sheet name with space.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Sep 2016 17:12:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-sas-dataset-using-excel-table-name-with-space/m-p/296391#M62084</guid>
      <dc:creator>jayakumarmm</dc:creator>
      <dc:date>2016-09-04T17:12:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a sas dataset using excel table name with space</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-sas-dataset-using-excel-table-name-with-space/m-p/296394#M62087</link>
      <description>&lt;P&gt;log please?&lt;/P&gt;</description>
      <pubDate>Sun, 04 Sep 2016 17:28:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-sas-dataset-using-excel-table-name-with-space/m-p/296394#M62087</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2016-09-04T17:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a sas dataset using excel table name with space</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-sas-dataset-using-excel-table-name-with-space/m-p/296397#M62089</link>
      <description>&lt;P&gt;Using the N literal notation is the correct method. 'Sheet Name$'n&lt;/P&gt;
&lt;P&gt;As mentions post your log. Note that it is case sensitive so needs to match Excel exactly.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please post a pic of library with sheet names as well.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Sep 2016 17:34:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-sas-dataset-using-excel-table-name-with-space/m-p/296397#M62089</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-09-04T17:34:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a sas dataset using excel table name with space</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-sas-dataset-using-excel-table-name-with-space/m-p/296398#M62090</link>
      <description>&lt;P&gt;Using the N literal notation is the correct method. 'Sheet Name$'n&lt;/P&gt;
&lt;P&gt;As mentions post your log. Note that it is case sensitive so needs to match Excel exactly.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please post a pic of library with sheet names as well.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Sep 2016 17:34:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-sas-dataset-using-excel-table-name-with-space/m-p/296398#M62090</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-09-04T17:34:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a sas dataset using excel table name with space</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-sas-dataset-using-excel-table-name-with-space/m-p/296399#M62091</link>
      <description>&lt;P&gt;Thank you so much for helping me. I have fixed this issue by adding single quotes to my sheet name. .i.e. 'first sheet'n&lt;/P&gt;</description>
      <pubDate>Sun, 04 Sep 2016 17:35:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-sas-dataset-using-excel-table-name-with-space/m-p/296399#M62091</guid>
      <dc:creator>jayakumarmm</dc:creator>
      <dc:date>2016-09-04T17:35:21Z</dc:date>
    </item>
  </channel>
</rss>

