<?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: Can't find sheet with a &amp;quot; ' &amp;quot; in name in Sashelp.table in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329225#M73613</link>
    <description>&lt;P&gt;Have you tried with an ODBC or XLSX connection instead of EXCEL?&lt;/P&gt;</description>
    <pubDate>Wed, 01 Feb 2017 22:20:25 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2017-02-01T22:20:25Z</dc:date>
    <item>
      <title>Can't find sheet with a " ' " in name in Sashelp.vtable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329212#M73610</link>
      <description>&lt;P&gt;Hi SAS experts,&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;I have an excel file containing a couple of sheets, ont of which has " ' " in the sheet name.&amp;nbsp;Then I can't find its name in sashep.vtable after I ran the following code. My guess is " ' " is the cause of the problem. Is there any way to fix it?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;libname xls excel 'path';&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you so much!&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2017 22:48:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329212#M73610</guid>
      <dc:creator>fbl204653</dc:creator>
      <dc:date>2017-02-01T22:48:07Z</dc:date>
    </item>
    <item>
      <title>Re: Can't find sheet with a " ' " in name in Sashelp.table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329218#M73611</link>
      <description>&lt;P&gt;Try using the Literal name reference even if it doesn't show up.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data want;&lt;/P&gt;
&lt;P&gt;set xls."this is'my name"n;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2017 22:00:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329218#M73611</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-02-01T22:00:00Z</dc:date>
    </item>
    <item>
      <title>Re: Can't find sheet with a " ' " in name in Sashelp.table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329221#M73612</link>
      <description>&lt;P&gt;Thanks for your reply, Reeza! What I tried to do is, read those sheets one by one based on the macro variabes that have been creatd using sashelp.vtale and vcolumn. Please see below. Since I can't find the sheet name with " ' " in vtable, the sheet can't be impprted .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;libname xls excel 'Lab ranges.xlsx';&amp;nbsp;&lt;/P&gt;&lt;P&gt;data sheet;&lt;BR /&gt;set sashelp.vtable(where=(libname='XLS'));&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;data sheetname;&lt;BR /&gt;set sheet end=eof nobs=nobs;&lt;BR /&gt;st=prxchange(re,-1,memname);&lt;BR /&gt;stnm=prxchange(re2,-1,memname);&lt;BR /&gt;call symput('site'||left(_n_),strip(memname));&lt;BR /&gt;if eof then call symput('lst',strip(_n_));&lt;BR /&gt;call symput('sitenum'||left(_n_),strip(st));&lt;BR /&gt;call symput('sitename'||left(_n_),strip(stnm));&lt;BR /&gt;call symput('siteid'||left(_n_),'_'||compress(stnm,,'kad')||strip(st));&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;%macro readin;&lt;BR /&gt;%do i=1 %to &amp;amp;lst.;&lt;BR /&gt;data _null_;&lt;BR /&gt;set sashelp.vcolumn(keep=libname memname name type where=(memname="&amp;amp;&amp;amp;site&amp;amp;i.")) end=eof;&lt;BR /&gt;if _n_=1 then call execute ("proc sql;create table &amp;amp;&amp;amp;siteid&amp;amp;i. as select");&lt;BR /&gt;if type='char' then call execute (name||' length=32 format=$32. informat=$32.');&lt;BR /&gt;else call execute ('put('||strip(name)||', best32. -l) as '||strip(name));&lt;BR /&gt;if not eof then call execute (',');&lt;BR /&gt;else call execute (" from xls.&amp;amp;&amp;amp;site&amp;amp;i..n;quit;");&lt;BR /&gt;run;&lt;BR /&gt;%end;&lt;BR /&gt;%mend readin;&lt;BR /&gt;%readin;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2017 22:08:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329221#M73612</guid>
      <dc:creator>fbl204653</dc:creator>
      <dc:date>2017-02-01T22:08:07Z</dc:date>
    </item>
    <item>
      <title>Re: Can't find sheet with a " ' " in name in Sashelp.table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329225#M73613</link>
      <description>&lt;P&gt;Have you tried with an ODBC or XLSX connection instead of EXCEL?&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2017 22:20:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329225#M73613</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-02-01T22:20:25Z</dc:date>
    </item>
    <item>
      <title>Re: Can't find sheet with a " ' " in name in Sashelp.table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329227#M73614</link>
      <description>&lt;P&gt;As you can see from the attached, it worked for me. I simply used:&amp;nbsp;&lt;SPAN&gt;libname xlfiles xlsx "/folders/myfolders/test.xlsx";&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;HTH,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Art, CEO, AnalystFinder.com&lt;/SPAN&gt;&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;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/13399iB80E499AAEC44E50/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Capture.JPG" title="Capture.JPG" /&gt;</description>
      <pubDate>Wed, 01 Feb 2017 22:25:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329227#M73614</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-02-01T22:25:16Z</dc:date>
    </item>
    <item>
      <title>Re: Can't find sheet with a " ' " in name in Sashelp.table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329230#M73615</link>
      <description>&lt;P&gt;Thanks, art297! That part works, since I can't find sheet names in vtable, i can't create macro variables based on that.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2017 22:30:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329230#M73615</guid>
      <dc:creator>fbl204653</dc:creator>
      <dc:date>2017-02-01T22:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: Can't find sheet with a " ' " in name in Sashelp.table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329232#M73616</link>
      <description>&lt;P&gt;It works for me with the XLSX engine, I'm on SAS 9.4 M3&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/7062i43198ED961009750/image-size/large?v=1.0&amp;amp;px=-1" border="0" alt="delete_excel_libname.JPG" title="delete_excel_libname.JPG" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2017 22:41:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329232#M73616</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-02-01T22:41:07Z</dc:date>
    </item>
    <item>
      <title>Re: Can't find sheet with a " ' " in name in Sashelp.table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329234#M73617</link>
      <description>&lt;P&gt;I'm not sure about the vtable view, but you could create the macro variables using proc sql accessing dictionary.tables (e.g.:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;libname xlfiles xlsx "/folders/myfolders/test.xlsx";&lt;BR /&gt;proc sql;&lt;BR /&gt; select *&lt;BR /&gt; from dictionary.tables&lt;BR /&gt; where libname eq 'XLFILES';&lt;BR /&gt; ;&lt;BR /&gt;quit;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The result of the above is shown in the attached jpg&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/13400iF0A6E58B1BD8CE54/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Capture.JPG" title="Capture.JPG" /&gt;</description>
      <pubDate>Wed, 01 Feb 2017 22:43:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329234#M73617</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-02-01T22:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: Can't find sheet with a " ' " in name in Sashelp.table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329238#M73618</link>
      <description>&lt;P&gt;Tried, not working. I guess it's due sas 9.3 Im using.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2017 22:48:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329238#M73618</guid>
      <dc:creator>fbl204653</dc:creator>
      <dc:date>2017-02-01T22:48:27Z</dc:date>
    </item>
    <item>
      <title>Re: Can't find sheet with a " ' " in name in Sashelp.table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329240#M73619</link>
      <description>&lt;P&gt;Yeah, 9.3 doesn't have all the features of XLSX but you can try the ODBC route.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2017 22:52:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329240#M73619</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-02-01T22:52:49Z</dc:date>
    </item>
    <item>
      <title>Re: Can't find sheet with a " ' " in name in Sashelp.vtable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329241#M73620</link>
      <description>&lt;P&gt;What are you trying to do with your prxchange calls? You dont include any prxparse calls that define either re or re2.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2017 23:08:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329241#M73620</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-02-01T23:08:00Z</dc:date>
    </item>
    <item>
      <title>Re: Can't find sheet with a " ' " in name in Sashelp.table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329243#M73621</link>
      <description>&lt;P&gt;Also, look at the NLITERAL and QUOTE functions when doing this type of automation. It can help avoid headaches and code that's cumbersome.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2017 23:23:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329243#M73621</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-02-01T23:23:52Z</dc:date>
    </item>
    <item>
      <title>Re: Can't find sheet with a " ' " in name in Sashelp.vtable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329267#M73638</link>
      <description>&lt;P&gt;Hi art, I removed the prxparse part because I think it's not revelant. Thanks for your suggestion! I will try dictionary table in sql..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2017 02:19:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329267#M73638</guid>
      <dc:creator>fbl204653</dc:creator>
      <dc:date>2017-02-02T02:19:13Z</dc:date>
    </item>
    <item>
      <title>Re: Can't find sheet with a " ' " in name in Sashelp.table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329268#M73639</link>
      <description>&lt;P&gt;They don't work in 9.3 here. Thank you anyway&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2017 02:20:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329268#M73639</guid>
      <dc:creator>fbl204653</dc:creator>
      <dc:date>2017-02-02T02:20:17Z</dc:date>
    </item>
    <item>
      <title>Re: Can't find sheet with a " ' " in name in Sashelp.table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329269#M73640</link>
      <description>&lt;P&gt;Will do.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2017 02:23:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329269#M73640</guid>
      <dc:creator>fbl204653</dc:creator>
      <dc:date>2017-02-02T02:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: Can't find sheet with a " ' " in name in Sashelp.table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329276#M73647</link>
      <description>&lt;P&gt;ODBC seems complicated. How to set it up in my case?&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>Thu, 02 Feb 2017 02:55:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329276#M73647</guid>
      <dc:creator>fbl204653</dc:creator>
      <dc:date>2017-02-02T02:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: Can't find sheet with a " ' " in name in Sashelp.table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329278#M73648</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/67404"&gt;@fbl204653&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;ODBC seems complicated. How to set it up in my case?&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;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Your situation seems complicated if you don't know the structure of your files and they have no naming conventions.&lt;/P&gt;
&lt;P&gt;Then again, all data analysis is..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See page 2 and the OLEDB example here.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www2.sas.com/proceedings/sugi27/p025-27.pdf" target="_blank"&gt;http://www2.sas.com/proceedings/sugi27/p025-27.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't specifically know how to connect to it via ODBC only that its possible. Fortunately I've never had to &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2017 03:04:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329278#M73648</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-02-02T03:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: Can't find sheet with a " ' " in name in Sashelp.table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329332#M73664</link>
      <description>&lt;P&gt;Firstly, why do you have no idea about your data, this is very bad - worse situation you can be in. &amp;nbsp;Especially using Excel, what happens if your "data" is suddenly pictures in those cells, or a graph is plonked in cell 1. &amp;nbsp;Its like trying to balance jelly on avalanche.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Secondly why all this faffing about with loops macros and code generation? &amp;nbsp;You already seem to know what call execute is about, just use that directly:&lt;/P&gt;
&lt;PRE&gt;libname xls excel 'Lab ranges.xlsx';
 
data _null_;
  set sashelp.vcolumn (where=(libname='XLS'));
  by memname;  /* May need to update */
  /* Put any calculations here */
  if first.memname then call execute('proc sql;  create ...');
  if type="char" then call execute('...');
  else call execute('...');
  if last.memname then call execute(';quit;'); 
run;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2017 09:42:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329332#M73664</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-02-02T09:42:16Z</dc:date>
    </item>
    <item>
      <title>Re: Can't find sheet with a " ' " in name in Sashelp.table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329438#M73705</link>
      <description>&lt;P&gt;Thanks for your first suggestion, RW9! You are right, the loop is not necessary.&amp;nbsp;&lt;img id="mantongue" class="emoticon emoticon-mantongue" src="https://communities.sas.com/i/smilies/16x16_man-tongue.png" alt="Man Tongue" title="Man Tongue" /&gt; . &amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2017 14:38:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-t-find-sheet-with-a-quot-quot-in-name-in-Sashelp-vtable/m-p/329438#M73705</guid>
      <dc:creator>fbl204653</dc:creator>
      <dc:date>2017-02-02T14:38:36Z</dc:date>
    </item>
  </channel>
</rss>

