<?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: Proc import with space in sheet name - how to mention range? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591673#M169547</link>
    <description>&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Are you reading an Excel file or a CSV file?&amp;nbsp; Your code says CSV.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Like&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;said, there are no sheets or ranges in a CSV file.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Vince DelGobbo&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;SAS R&amp;amp;D&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 25 Sep 2019 19:04:32 GMT</pubDate>
    <dc:creator>Vince_SAS</dc:creator>
    <dc:date>2019-09-25T19:04:32Z</dc:date>
    <item>
      <title>Proc import with space in sheet name - how to mention range?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591616#M169513</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I am trying to import an excel file with a space in the sheet name. I researched online and found that we can put a 'Sheet Name'n&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However when I mention the range in the range= 'Sheet Name$A21:I49'&amp;nbsp; is not working&lt;/P&gt;&lt;P&gt;I tried&amp;nbsp;'Sheet Name$A21:I49'n and&amp;nbsp;&amp;nbsp;'Sheet Name'n$A21:I49'&lt;/P&gt;&lt;P&gt;In other words below is not working near range:&lt;/P&gt;&lt;P&gt;proc import datafile=innfile out=test&lt;BR /&gt;dbms=csv replace;&lt;BR /&gt;sheet="Sheet Name$"n;&lt;BR /&gt;getnames=no;&lt;BR /&gt;guessingrows=20;&lt;BR /&gt;range="Sheet Name$A2134:I2499";&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sheet option works fine but not range. How to fix this?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Error: 180-322: Statement is not valid or it is used out of proper order.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2019 17:06:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591616#M169513</guid>
      <dc:creator>ilearnsas</dc:creator>
      <dc:date>2019-09-25T17:06:44Z</dc:date>
    </item>
    <item>
      <title>Re: Proc import with space in sheet name - how to mention range?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591617#M169514</link>
      <description>You need to use one of SHEET or RANGE, not both. &lt;BR /&gt;So if you use RANGE, remove the SHEET option. The SHEET option you're referencing is not for SHEET in PROC IMPORT, it's for importing data using a LIBNAME statement. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 25 Sep 2019 17:06:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591617#M169514</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-09-25T17:06:31Z</dc:date>
    </item>
    <item>
      <title>Re: Proc import with space in sheet name - how to mention range?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591618#M169515</link>
      <description>&lt;P&gt;If I manually rename the 'sheet name' to 'sheet_name' instead of space, then both sheet and range options work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So for a file like this, lets assume I have a range, can I just do range range="Sheet Name$A2134:I2499"? Unfortunately space does not work.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried below now and it does not work either:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc import datafile=innfile out=Full_Hist&lt;BR /&gt;dbms=csv replace;&lt;BR /&gt;/*sheet="Sheet Name$"n;*/&lt;/P&gt;&lt;P&gt;/*Commented sheet option*/&lt;BR /&gt;getnames=no;&lt;BR /&gt;guessingrows=20;&lt;BR /&gt;range="Sheet Name$A2134:I2499";&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2019 17:10:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591618#M169515</guid>
      <dc:creator>ilearnsas</dc:creator>
      <dc:date>2019-09-25T17:10:12Z</dc:date>
    </item>
    <item>
      <title>Re: Proc import with space in sheet name - how to mention range?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591619#M169516</link>
      <description>&lt;PRE&gt;range="&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;'&lt;/STRONG&gt;&lt;/FONT&gt;Sheet Name&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;'&lt;/STRONG&gt;&lt;/FONT&gt;$A2134:I2499";&lt;/PRE&gt;
&lt;P&gt;You need to us Excel notation, try the above format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Otherwise, if this is one time or a template, consider using a named range.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/sasdummy/2018/06/21/read-excel-range/" target="_blank"&gt;https://blogs.sas.com/content/sasdummy/2018/06/21/read-excel-range/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/286724"&gt;@ilearnsas&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;If I manually rename the 'sheet name' to 'sheet_name' instead of space, then both sheet and range options work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So for a file like this, lets assume I have a range, can I just do range range="Sheet Name$A2134:I2499"? Unfortunately space does not work.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried below now and it does not work either:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc import datafile=innfile out=Full_Hist&lt;BR /&gt;dbms=csv replace;&lt;BR /&gt;/*sheet="Sheet Name$"n;*/&lt;/P&gt;
&lt;P&gt;/*Commented sheet option*/&lt;BR /&gt;getnames=no;&lt;BR /&gt;guessingrows=20;&lt;BR /&gt;range="Sheet Name$A2134:I2499";&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2019 17:14:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591619#M169516</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-09-25T17:14:22Z</dc:date>
    </item>
    <item>
      <title>Re: Proc import with space in sheet name - how to mention range?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591622#M169518</link>
      <description>&lt;P&gt;I tried this as well.&amp;nbsp;range="'Sheet Name'$A2134:I2499" Gives the same error&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2019 17:34:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591622#M169518</guid>
      <dc:creator>ilearnsas</dc:creator>
      <dc:date>2019-09-25T17:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: Proc import with space in sheet name - how to mention range?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591624#M169519</link>
      <description>&lt;P&gt;I cannot use the named range because I am using proc http automating the download and then using proc import to create a sas dataset.&lt;/P&gt;&lt;P&gt;I cannot rename the file name as well since this is an automated process..&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unless there is a way in sas to automatically rename the excel sheet from "sheet name" to 'Sheet_Name'&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2019 17:35:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591624#M169519</guid>
      <dc:creator>ilearnsas</dc:creator>
      <dc:date>2019-09-25T17:35:44Z</dc:date>
    </item>
    <item>
      <title>Re: Proc import with space in sheet name - how to mention range?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591627#M169521</link>
      <description>&lt;P&gt;Please copy/paste the whole log of the step into a window opened with the {i} button.&lt;/P&gt;
&lt;P&gt;I suspect that the guessingrows= statement is the real culprit.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2019 17:42:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591627#M169521</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-09-25T17:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: Proc import with space in sheet name - how to mention range?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591629#M169523</link>
      <description>&lt;P&gt;PS from the documentation for the GUESSINGROWS statement:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE class="xis-procSummary"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD class="xis-summaryInteraction"&gt;Interaction:&lt;/TD&gt;
&lt;TD class="xis-summaryValue"&gt;The GUESSINGROWS statement is valid only for delimited files.&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(as always: see Maxim 1)&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2019 17:44:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591629#M169523</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-09-25T17:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: Proc import with space in sheet name - how to mention range?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591646#M169535</link>
      <description>&lt;P&gt;I commented out guessingrows and still the same error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the log below:-&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;25 GOPTIONS ACCESSIBLE;&lt;BR /&gt;26 options validvarname=ANY;&lt;BR /&gt;27 proc import datafile=innfile out=Full_Hist&lt;BR /&gt;28 /*(rename=(A=US =new_var2))*/&lt;BR /&gt;29 dbms=csv replace;&lt;BR /&gt;NOTE: The previous statement has been deleted.&lt;BR /&gt;30 /*sheet="Full History$"n;*/&lt;BR /&gt;31 getnames=no;&lt;BR /&gt;32 /*datarow=2134;*/&lt;BR /&gt;33 /*guessingrows=20;*/&lt;BR /&gt;34 range="'Full History'$A2134:I2499";&lt;BR /&gt;_____&lt;BR /&gt;180&lt;BR /&gt;&lt;U&gt;&lt;STRONG&gt;ERROR&lt;/STRONG&gt; &lt;/U&gt;180-322: Statement is not valid or it is used out of proper order.&lt;/P&gt;&lt;P&gt;35 run;&lt;/P&gt;&lt;P&gt;NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary parameter values will be saved to&lt;BR /&gt;WORK.PARMS.PARMS.SLIST.&lt;BR /&gt;36 /**********************************************************************&lt;BR /&gt;37 * PRODUCT: SAS&lt;BR /&gt;38 * VERSION: 9.4&lt;BR /&gt;39 * CREATOR: External File Interface&lt;BR /&gt;40 * DATE: 25SEP19&lt;BR /&gt;41 * DESC: Generated SAS Datastep Code&lt;BR /&gt;42 * TEMPLATE SOURCE: (None Specified.)&lt;BR /&gt;43 ***********************************************************************/&lt;BR /&gt;44 data WORK.FULL_HIST ;&lt;BR /&gt;45 %let _EFIERR_ = 0; /* set the ERROR detection macro variable */&lt;BR /&gt;46 infile INNFILE delimiter = ',' MISSOVER DSD ;&lt;BR /&gt;47 informat VAR1 $1427. ;&lt;BR /&gt;48 informat VAR2 $643. ;&lt;BR /&gt;49 informat VAR3 $362. ;&lt;BR /&gt;2 The SAS System 11:09 Wednesday, September 25, 2019&lt;/P&gt;&lt;P&gt;50 informat VAR4 $583. ;&lt;BR /&gt;51 informat VAR5 $198. ;&lt;BR /&gt;52 informat VAR6 $88. ;&lt;BR /&gt;53 informat VAR7 $4. ;&lt;BR /&gt;54 informat VAR8 $103. ;&lt;BR /&gt;55 informat VAR9 $601. ;&lt;BR /&gt;56 informat VAR10 $210. ;&lt;BR /&gt;57 informat VAR11 $616. ;&lt;BR /&gt;58 informat VAR12 $104. ;&lt;BR /&gt;59 informat VAR13 $4. ;&lt;BR /&gt;60 informat VAR14 $745. ;&lt;BR /&gt;61 format VAR1 $1427. ;&lt;BR /&gt;62 format VAR2 $643. ;&lt;BR /&gt;63 format VAR3 $362. ;&lt;BR /&gt;64 format VAR4 $583. ;&lt;BR /&gt;65 format VAR5 $198. ;&lt;BR /&gt;66 format VAR6 $88. ;&lt;BR /&gt;67 format VAR7 $4. ;&lt;BR /&gt;68 format VAR8 $103. ;&lt;BR /&gt;69 format VAR9 $601. ;&lt;BR /&gt;70 format VAR10 $210. ;&lt;BR /&gt;71 format VAR11 $616. ;&lt;BR /&gt;72 format VAR12 $104. ;&lt;BR /&gt;73 format VAR13 $4. ;&lt;BR /&gt;74 format VAR14 $745. ;&lt;BR /&gt;75 input&lt;BR /&gt;76 VAR1 $&lt;BR /&gt;77 VAR2 $&lt;BR /&gt;78 VAR3 $&lt;BR /&gt;79 VAR4 $&lt;BR /&gt;80 VAR5 $&lt;BR /&gt;81 VAR6 $&lt;BR /&gt;82 VAR7 $&lt;BR /&gt;83 VAR8 $&lt;BR /&gt;84 VAR9 $&lt;BR /&gt;85 VAR10 $&lt;BR /&gt;86 VAR11 $&lt;BR /&gt;87 VAR12 $&lt;BR /&gt;88 VAR13 $&lt;BR /&gt;89 VAR14 $&lt;BR /&gt;90 ;&lt;BR /&gt;91 if _ERROR_ then call symputx('_EFIERR_',1); /* set ERROR detection macro variable */&lt;BR /&gt;92 run;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2019 18:16:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591646#M169535</guid>
      <dc:creator>ilearnsas</dc:creator>
      <dc:date>2019-09-25T18:16:06Z</dc:date>
    </item>
    <item>
      <title>Re: Proc import with space in sheet name - how to mention range?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591651#M169537</link>
      <description>&lt;P&gt;A csv file does not have ranges.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2019 18:24:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591651#M169537</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-09-25T18:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: Proc import with space in sheet name - how to mention range?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591661#M169540</link>
      <description>That's not the full log, I understand why you're trying to mask things but you didn't include the file statement. &lt;BR /&gt;&lt;BR /&gt;Either way, as Kurt has correctly pointed out you have a CSV file, not an Excel file and they're handled differently. &lt;BR /&gt;&lt;BR /&gt;Excel is good for viewing CSV files but it doesn't always render them correctly so its user beware for anything you see in Excel. &lt;BR /&gt;&lt;BR /&gt;If you want to limit the rows/columns you need to import there are other ways to do so.</description>
      <pubDate>Wed, 25 Sep 2019 18:35:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591661#M169540</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-09-25T18:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: Proc import with space in sheet name - how to mention range?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591665#M169543</link>
      <description>&lt;P&gt;What other option can be used here to let know sas to pick a few specific rows and not everything? i.e. instead of range option, can we use anything else&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2019 18:43:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591665#M169543</guid>
      <dc:creator>ilearnsas</dc:creator>
      <dc:date>2019-09-25T18:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: Proc import with space in sheet name - how to mention range?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591667#M169544</link>
      <description>Well, you know the record numbers so you can use FIRSTOBS to start reading at a specific line and use OBS= to read only a specific number of records. &lt;BR /&gt;&lt;BR /&gt;You can also use DROP/KEEP to keep/drop variables, but you have to read all variables first. You do not have to read all rows though.</description>
      <pubDate>Wed, 25 Sep 2019 18:45:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591667#M169544</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-09-25T18:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: Proc import with space in sheet name - how to mention range?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591673#M169547</link>
      <description>&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Are you reading an Excel file or a CSV file?&amp;nbsp; Your code says CSV.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Like&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;said, there are no sheets or ranges in a CSV file.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Vince DelGobbo&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;SAS R&amp;amp;D&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2019 19:04:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-import-with-space-in-sheet-name-how-to-mention-range/m-p/591673#M169547</guid>
      <dc:creator>Vince_SAS</dc:creator>
      <dc:date>2019-09-25T19:04:32Z</dc:date>
    </item>
  </channel>
</rss>

