<?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: Variables not resolving in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Variables-not-resolving/m-p/125370#M25604</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Calibri, sans-serif;"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; background: white; font-size: 10.0pt; font-family: 'Calibri','sans-serif';"&gt;data&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: black; background: white;"&gt; want;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: black; background: white;"&gt;&amp;nbsp; char_date = &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: purple; background: white;"&gt;'01/10/2011'&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: black; background: white;"&gt; ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: black; background: white;"&gt;&amp;nbsp; num_date = input(char_date, &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: teal; background: white;"&gt;mmddyy10.&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: black; background: white;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: blue; background: white;"&gt;format&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: black; background: white;"&gt; num_date &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: teal; background: white;"&gt;mmddyy10.&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; background: white; font-size: 10.0pt; font-family: 'Calibri','sans-serif';"&gt;run&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: black; background: white;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: black; background: white;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: black; background: white;"&gt;Shiva&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Sep 2012 16:55:27 GMT</pubDate>
    <dc:creator>shivas</dc:creator>
    <dc:date>2012-09-19T16:55:27Z</dc:date>
    <item>
      <title>Variables not resolving</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Variables-not-resolving/m-p/125366#M25600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Greetings.&amp;nbsp; I'm trying to create a dataset in work from another dataset where a date in the source table is greater than or equeal to an input parameter, and less than or equal to another input parameter.&amp;nbsp; I've tried putting it in quotes, using a period after them, and then both of those, and neither of these, and I can't get it to work.&amp;nbsp; I worked on a macro this week where the only way I could get a variable to resolve was to put double quotes around it.&amp;nbsp; And it seems sometimes I need to put a period after a variable and sometimes not.&amp;nbsp; I'm haveing a terrible time trying to find a general rule of thumb for using variables.&amp;nbsp; This is what I am trying, and I sure would appreciate any tips.&amp;nbsp; Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%Let dt_start = 2012-09-01;&lt;/P&gt;&lt;P&gt;%Let dt_end = 2012-09-30;&lt;/P&gt;&lt;P&gt;data work.new_recs;&lt;/P&gt;&lt;P&gt; set main.otbr_master;&lt;/P&gt;&lt;P&gt; if dt_bill &amp;gt;= &amp;amp;dt_start.;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if dt_bill &amp;lt;= &amp;amp;dt_stop.;&lt;/P&gt;&lt;P&gt;run;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the error...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1817&amp;nbsp; %Let dt_start = 2012-09-01;&lt;BR /&gt;1818&amp;nbsp; %Let dt_end = 2012-09-30;&lt;BR /&gt;1819&amp;nbsp; data work.new_recs;&lt;BR /&gt;1820&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set main.otbr_master;&lt;BR /&gt;1821&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if dt_bill &amp;gt;= &amp;amp;dt_start.;&lt;BR /&gt;1822&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if dt_bill &amp;lt;= &amp;amp;dt_stop.;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 390&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 200&lt;BR /&gt;WARNING: Apparent symbolic reference DT_STOP not resolved.&lt;BR /&gt;ERROR 390-185: Expecting an relational or arithmetic operator.&lt;/P&gt;&lt;P&gt;ERROR 200-322: The symbol is not recognized and will be ignored.&lt;/P&gt;&lt;P&gt;1823&amp;nbsp; run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2012 16:01:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Variables-not-resolving/m-p/125366#M25600</guid>
      <dc:creator>gsnidow</dc:creator>
      <dc:date>2012-09-19T16:01:48Z</dc:date>
    </item>
    <item>
      <title>Re: Variables not resolving</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Variables-not-resolving/m-p/125367#M25601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px; background-color: #ffffff;"&gt; if dt_bill &amp;lt;= &amp;amp;dt_end.;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px; background-color: #ffffff;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px; background-color: #ffffff;"&gt;Shiva&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2012 16:20:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Variables-not-resolving/m-p/125367#M25601</guid>
      <dc:creator>shivas</dc:creator>
      <dc:date>2012-09-19T16:20:44Z</dc:date>
    </item>
    <item>
      <title>Re: Variables not resolving</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Variables-not-resolving/m-p/125368#M25602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DOH!!!&amp;nbsp; Oh my goodness I need to teak a break from this.&amp;nbsp; How could I have missed that?&amp;nbsp; Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2012 16:25:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Variables-not-resolving/m-p/125368#M25602</guid>
      <dc:creator>gsnidow</dc:creator>
      <dc:date>2012-09-19T16:25:45Z</dc:date>
    </item>
    <item>
      <title>Re: Variables not resolving</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Variables-not-resolving/m-p/125369#M25603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well now I've got another problem with this.&amp;nbsp; The variable dt_bill is a 10 character text field.&amp;nbsp; Is there any way I can change it to mm/dd/yyyy date format?&amp;nbsp; Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2012 16:34:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Variables-not-resolving/m-p/125369#M25603</guid>
      <dc:creator>gsnidow</dc:creator>
      <dc:date>2012-09-19T16:34:47Z</dc:date>
    </item>
    <item>
      <title>Re: Variables not resolving</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Variables-not-resolving/m-p/125370#M25604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Calibri, sans-serif;"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; background: white; font-size: 10.0pt; font-family: 'Calibri','sans-serif';"&gt;data&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: black; background: white;"&gt; want;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: black; background: white;"&gt;&amp;nbsp; char_date = &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: purple; background: white;"&gt;'01/10/2011'&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: black; background: white;"&gt; ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: black; background: white;"&gt;&amp;nbsp; num_date = input(char_date, &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: teal; background: white;"&gt;mmddyy10.&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: black; background: white;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: blue; background: white;"&gt;format&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: black; background: white;"&gt; num_date &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: teal; background: white;"&gt;mmddyy10.&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; background: white; font-size: 10.0pt; font-family: 'Calibri','sans-serif';"&gt;run&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: black; background: white;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: black; background: white;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Calibri','sans-serif'; color: black; background: white;"&gt;Shiva&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2012 16:55:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Variables-not-resolving/m-p/125370#M25604</guid>
      <dc:creator>shivas</dc:creator>
      <dc:date>2012-09-19T16:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: Variables not resolving</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Variables-not-resolving/m-p/125371#M25605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are going to store dates in character variables it is best to use YYYY/MM/DD format so that the character strings will sort in chronological order.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2012 18:07:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Variables-not-resolving/m-p/125371#M25605</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2012-09-19T18:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: Variables not resolving</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Variables-not-resolving/m-p/125372#M25606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tom, the only reason it is in text format is because that is how it is stored on the mainframe.&amp;nbsp; This goes back to something you helped me with last week.&amp;nbsp; If i'm pulling in data from a mainframe file like so...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FILENAME ezt "PPPCTK.ZZZ.BALANCED.REVXREC.DSKO745(-&amp;amp;i)" DISP=SHR;&lt;/P&gt;&lt;P&gt;data work.ontime&amp;amp;i;&lt;/P&gt;&lt;P&gt; INFILE ezt;&lt;/P&gt;&lt;P&gt; input &lt;/P&gt;&lt;P&gt; @1&amp;nbsp;&amp;nbsp; ID_BA&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PD6.&lt;/P&gt;&lt;P&gt; @7&amp;nbsp; CD_BUS&amp;nbsp;&amp;nbsp;&amp;nbsp; $4.&lt;/P&gt;&lt;P&gt; @16&amp;nbsp; DT_BILL&amp;nbsp;&amp;nbsp;&amp;nbsp; $10.&amp;nbsp;&amp;nbsp; &amp;lt;&amp;lt;&amp;lt;---- I need this to end up as a date in the dataset.&lt;/P&gt;&lt;P&gt; @48&amp;nbsp; AT_SVC_UNIT_BILLED PD6.2&lt;/P&gt;&lt;P&gt; @100 CD_RATE&amp;nbsp;&amp;nbsp;&amp;nbsp; $3.&lt;/P&gt;&lt;P&gt; @138 CD_REV_SRC&amp;nbsp;&amp;nbsp; $2.&lt;/P&gt;&lt;P&gt; @154 CD_CYCLE&amp;nbsp;&amp;nbsp; IB2.&lt;/P&gt;&lt;P&gt; @201 FL_MORE_REV_REC&amp;nbsp; $1.;&lt;/P&gt;&lt;P&gt; run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I make the field 'dt_bill' be in date format.&amp;nbsp; I am eventually putting this data into Excel, and '2012-09-01' does not convert to a date format in Excel, so I need it to be in a format like '9/1/2012', or anything Excel will recognize as a date.&amp;nbsp; Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2012 18:33:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Variables-not-resolving/m-p/125372#M25606</guid>
      <dc:creator>gsnidow</dc:creator>
      <dc:date>2012-09-19T18:33:33Z</dc:date>
    </item>
    <item>
      <title>Re: Variables not resolving</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Variables-not-resolving/m-p/125373#M25607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think this will work...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data test;&lt;BR /&gt; input dt_bill $10.;&lt;BR /&gt;cards;&lt;BR /&gt;2012-09-01&lt;BR /&gt;2012-09-02&lt;BR /&gt;2012-09-03&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;data test;&lt;BR /&gt; set test;&lt;BR /&gt; bill_dt = input(dt_bill,yymmdd10.);&lt;BR /&gt; format bill_dt mmddyy10.;&lt;BR /&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2012 18:36:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Variables-not-resolving/m-p/125373#M25607</guid>
      <dc:creator>gsnidow</dc:creator>
      <dc:date>2012-09-19T18:36:04Z</dc:date>
    </item>
    <item>
      <title>Re: Variables not resolving</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Variables-not-resolving/m-p/125374#M25608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could change the input format in the step that is reading the text file so that it reads it as a date instead of a character string.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;... @16&amp;nbsp; DT_BILL&amp;nbsp;&amp;nbsp;&amp;nbsp; mmddyy10. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to trouble with excel automatically reading YYYY-MM-DD or YYYY/MM/DD strings as dates.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2012 18:46:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Variables-not-resolving/m-p/125374#M25608</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2012-09-19T18:46:25Z</dc:date>
    </item>
  </channel>
</rss>

