<?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 Can I pull variable names on a word file using SAS? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Can-I-pull-variable-names-on-a-word-file-using-SAS/m-p/95064#M20022</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have &lt;SPAN style="color: #ff0000; font-size: 12pt;"&gt;Red variable&lt;/SPAN&gt; names on a word document, can I create a dataset of the &lt;SPAN style="color: #ff0000;"&gt;RED variables&lt;/SPAN&gt;?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Jun 2012 15:32:29 GMT</pubDate>
    <dc:creator>HG</dc:creator>
    <dc:date>2012-06-28T15:32:29Z</dc:date>
    <item>
      <title>Can I pull variable names on a word file using SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-I-pull-variable-names-on-a-word-file-using-SAS/m-p/95064#M20022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have &lt;SPAN style="color: #ff0000; font-size: 12pt;"&gt;Red variable&lt;/SPAN&gt; names on a word document, can I create a dataset of the &lt;SPAN style="color: #ff0000;"&gt;RED variables&lt;/SPAN&gt;?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2012 15:32:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-I-pull-variable-names-on-a-word-file-using-SAS/m-p/95064#M20022</guid>
      <dc:creator>HG</dc:creator>
      <dc:date>2012-06-28T15:32:29Z</dc:date>
    </item>
    <item>
      <title>Re: Can I pull variable names on a word file using SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-I-pull-variable-names-on-a-word-file-using-SAS/m-p/95065#M20023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If is is a docx file, it is just an XML text file and you can read it and parse out the variable names with SAS code.&amp;nbsp; Tedious, but it can be done.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2012 15:40:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-I-pull-variable-names-on-a-word-file-using-SAS/m-p/95065#M20023</guid>
      <dc:creator>Doc_Duke</dc:creator>
      <dc:date>2012-06-28T15:40:29Z</dc:date>
    </item>
    <item>
      <title>Re: Can I pull variable names on a word file using SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-I-pull-variable-names-on-a-word-file-using-SAS/m-p/95066#M20024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; I'm not sure what you mean by RED variable names. How did the variable names get into the WORD document? Do you have a report that you are trying to read out of WORD. You might be able to save your WORD document as a TEXT File and then read the text file with a DATA step program. Whether it is easier to read the XML file or a flat text file is up to you. Of course, all color indicators would be gone from the TEXT file. On the other hand, although the XML file (DOCUMENT.XML) does contain a color indicator, it's expressed as a color value. See the screen shot below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; In order to see "down inside" the .DOCX file, I typed some text into Word and saved the file as TEST_RED.DOCX. Then I made a copy of this file and renamed it to TEST_RED.ZIP and then I opened the ZIP archive with WinZip. That allowed me to navigate to&amp;nbsp; the DOCUMENT.XML file inside the zip archive (since a .DOCX file is just a zip archive) and take this side by side screen shot. The XML is shown in the big rectangle for just the one line in the document. You can see that the string 'This is' is separated from the word 'RED' by many XML tag attributes, and these are the ones which indicate that the color is red:&lt;/P&gt;&lt;P&gt;XML Tag is&lt;STRONG&gt; w:color&lt;/STRONG&gt;&amp;nbsp; Attribute is: &lt;STRONG&gt;w:val="FF0000"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; But, once you have the variable NAMES, how would you get the variable VALUES? Why do you only need the variable NAMES out of the Word doc?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just curious,&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/10759iA439B39E1ECEBBD5/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="this_is_RED.png" title="this_is_RED.png" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2012 16:24:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-I-pull-variable-names-on-a-word-file-using-SAS/m-p/95066#M20024</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2012-06-28T16:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: Can I pull variable names on a word file using SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-I-pull-variable-names-on-a-word-file-using-SAS/m-p/95067#M20025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Cynthia,&lt;/P&gt;&lt;P&gt;Thank you for your reply. I manually added the variable names on a word document. The goal is to make sure the variables on the word form are matching the variable names in the sas dataset. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2012 19:42:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-I-pull-variable-names-on-a-word-file-using-SAS/m-p/95067#M20025</guid>
      <dc:creator>HG</dc:creator>
      <dc:date>2012-06-28T19:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: Can I pull variable names on a word file using SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-I-pull-variable-names-on-a-word-file-using-SAS/m-p/95068#M20026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; It would be far easier if you had put the variable names into an Excel file instead of a Word document. At least with an Excel file, you could use PROC IMPORT or the LIBNAME statement to read the list of names into a SAS dataset. An Excel worksheet is more like a SAS dataset and SAS would read the worksheet quite well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; The Word document is just that -- a document -- and could contain the Magna Carta, the Gettysburg Address or the full text of Lewis Carroll's poem, Jabberwocky, as well as contain a list of variable names. A document is not the same as a worksheet or a dataset, so you have set yourself a harder task. I believe there have been some previous postings about possibly copying your table to the Windows clipboard using DDE and then reading out of the clipboard, but that sounds like a learning curve, as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Since you typed the variable names into Word, doesn't that mean you already know what the correct variable names should be? Would a simple "low-tech" desk check suffice for your purposes?&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2012 20:12:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-I-pull-variable-names-on-a-word-file-using-SAS/m-p/95068#M20026</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2012-06-28T20:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: Can I pull variable names on a word file using SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-I-pull-variable-names-on-a-word-file-using-SAS/m-p/95069#M20027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Cynthia,&lt;/P&gt;&lt;P&gt;The form is a case report form. &lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2012 22:28:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-I-pull-variable-names-on-a-word-file-using-SAS/m-p/95069#M20027</guid>
      <dc:creator>HG</dc:creator>
      <dc:date>2012-06-28T22:28:50Z</dc:date>
    </item>
    <item>
      <title>Re: Can I pull variable names on a word file using SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-I-pull-variable-names-on-a-word-file-using-SAS/m-p/95070#M20028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SAS can easily read Word documents.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;First bookmark the area of the Word document that you want SAS to work with. (It takes 30-seconds with Word Help to learn about bookmarks.)&amp;nbsp; Tables work best but you can bookmark any section of the body.&amp;nbsp; The bookmarking process requires that you give each bookmark a unique name.&amp;nbsp; In effect, it becomes a dataset or table just like a sheet in an Excel workbook.&lt;/LI&gt;&lt;LI&gt;Then use a filename statement with the DDE engine to read the bookmarked table.&amp;nbsp; This is very similar to using a libref to read a sheet from an Excel workbook.&amp;nbsp; The fileref lets you control how the bookmarked section is read with INFILE and INPUT statements.&amp;nbsp; If the fields you want are in table format, just use define each column as a variable.&amp;nbsp; If it's in a paragraph then in your case I'd make each word the same variable and compare them one at a time to the variables in the dataset.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Having the variable names in red or bold won't do you any good in my solution because SAS can't tell when the format changes.&amp;nbsp; I would startior end each of your variable names with a special character that can be stripped off.&amp;nbsp; If that's not doable then Cynthia's XLS approach would be best I think.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is a macro that I use to read a series of tables in Word documents that contains record selection specifications.&amp;nbsp; The document name is specified in a %let statement before the macro is called but you can easily modify it to accept a document name parameter.&amp;nbsp; The documents are prepared from a template that contains pre-bookmarked tables.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jul 2012 14:51:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-I-pull-variable-names-on-a-word-file-using-SAS/m-p/95070#M20028</guid>
      <dc:creator>bentleyj1</dc:creator>
      <dc:date>2012-07-03T14:51:59Z</dc:date>
    </item>
    <item>
      <title>Re: Can I pull variable names on a word file using SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-I-pull-variable-names-on-a-word-file-using-SAS/m-p/95071#M20029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your help! I will try it.&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jul 2012 16:04:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-I-pull-variable-names-on-a-word-file-using-SAS/m-p/95071#M20029</guid>
      <dc:creator>HG</dc:creator>
      <dc:date>2012-07-03T16:04:40Z</dc:date>
    </item>
    <item>
      <title>Re: Can I pull variable names on a word file using SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-I-pull-variable-names-on-a-word-file-using-SAS/m-p/95072#M20030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ... another idea, look at &lt;A _jive_internal="true" href="https://communities.sas.com/message/124363"&gt;https://communities.sas.com/message/124363&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that thread addresses the same issue (read RTF with SAS but again without "seeing" red text) and it does it using DDE, copying all the text to the clipboard, the using the clipboard access method ..., for example ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-style: inherit; font-family: 'courier new', courier;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;* use DDE to place the RTF file in the clipboard;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-style: inherit; font-family: 'courier new', courier;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;filename word DDE 'winword|system' notab;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-style: inherit; font-family: 'courier new', courier;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;data _null_;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-style: inherit; font-family: 'courier new', courier;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;file word;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-style: inherit; font-family: 'courier new', courier;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;put '[FileOpen .Name = "' "z:\test.rtf" '"]';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-style: inherit; font-family: 'courier new', courier;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;put "[EditSelectAll]";&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-style: inherit; font-family: 'courier new', courier;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;put "[EditCopy]";&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-style: inherit; font-family: 'courier new', courier;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;put '[FileClose]';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-style: inherit; font-family: 'courier new', courier;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; background-color: #ffffff;"&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;*&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;read the file with a data step, search for text;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;&lt;STRONG style="font-family: inherit; font-size: 12.800000190734863px; font-style: inherit; background-color: #ffffff;"&gt;filename x clipbrd;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;data _null_;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;infile x;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;input;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;&amp;lt;search variable _INFILE_ for text&amp;gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;see also ....&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;clipboard access ...&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a002571877.htm"&gt;http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a002571877.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: inherit; font-size: 10pt; font-style: inherit;"&gt;good paper ... "Importing Data from Microsoft Word into SAS"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;A href="http://www.pharmasug.org/download/papers/CC18.pdf"&gt;http://www.pharmasug.org/download/papers/CC18.pdf&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jul 2012 18:13:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-I-pull-variable-names-on-a-word-file-using-SAS/m-p/95072#M20030</guid>
      <dc:creator>MikeZdeb</dc:creator>
      <dc:date>2012-07-03T18:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: Can I pull variable names on a word file using SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-I-pull-variable-names-on-a-word-file-using-SAS/m-p/95073#M20031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yep, Jay Zhou's paper provided a lot of help when I built my macro.&amp;nbsp; I think I sent him a note saying 'Thanks'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jul 2012 19:12:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-I-pull-variable-names-on-a-word-file-using-SAS/m-p/95073#M20031</guid>
      <dc:creator>bentleyj1</dc:creator>
      <dc:date>2012-07-03T19:12:11Z</dc:date>
    </item>
  </channel>
</rss>

