<?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: Please help me to check the program? why does it not work? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708224#M217628</link>
    <description>&lt;P&gt;Posting just SAS code only allows us to check the syntax and there is nothing significantly wrong. Please post your full SAS log including source statements, notes and errors as this should offer more clues as to what is happening.&lt;/P&gt;</description>
    <pubDate>Fri, 25 Dec 2020 23:38:33 GMT</pubDate>
    <dc:creator>SASKiwi</dc:creator>
    <dc:date>2020-12-25T23:38:33Z</dc:date>
    <item>
      <title>why it doesn't work , please give me help</title>
      <link>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708235#M217611</link>
      <description>&lt;P&gt;Question:&lt;/P&gt;
&lt;P&gt;You are given a text file called "stockprices.txt" containing information on the purchase and sale of stocks. The data layout is as follows:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tianerhu_1-1608944635886.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/53027iCC504FA40E8314E6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tianerhu_1-1608944635886.png" alt="tianerhu_1-1608944635886.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;A list of the data file is :&lt;/P&gt;
&lt;P&gt;IBM&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5/21/2006&amp;nbsp;&amp;nbsp; $80.0&amp;nbsp;&amp;nbsp; 10007/20/2006&amp;nbsp;&amp;nbsp;&amp;nbsp; $88.5&lt;/P&gt;
&lt;P&gt;CSCO04/05/2005&amp;nbsp;&amp;nbsp; $17.5&amp;nbsp;&amp;nbsp; 20009/21/2005&amp;nbsp;&amp;nbsp;&amp;nbsp; $23.6&lt;/P&gt;
&lt;P&gt;MOT&amp;nbsp; 03/01/2004&amp;nbsp;&amp;nbsp; $14.7&amp;nbsp;&amp;nbsp;&amp;nbsp; 50010/10/2006&amp;nbsp;&amp;nbsp; $19.9&lt;/P&gt;
&lt;P&gt;XMSR04/15/2006&amp;nbsp;&amp;nbsp; $28.4&amp;nbsp;&amp;nbsp;&amp;nbsp; 20004/15/2007&amp;nbsp;&amp;nbsp; $12.7&lt;/P&gt;
&lt;P&gt;BBY&amp;nbsp;&amp;nbsp; 02/15/2005&amp;nbsp;&amp;nbsp; $45.2&amp;nbsp;&amp;nbsp;&amp;nbsp; 10009/09/2006&amp;nbsp;&amp;nbsp; $56.8&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a SAS data set (call it Stocks) by reading the data from this file. Use formatted input.&lt;/P&gt;
&lt;P&gt;compute several new variable as follows:&lt;/P&gt;
&lt;P&gt;Variable&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Description&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;&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; Computation&lt;/P&gt;
&lt;P&gt;TotalPur&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Total purchase price&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; Number times PurPrice&lt;/P&gt;
&lt;P&gt;TotalSell&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Total selling price&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Number times SellPrice&lt;/P&gt;
&lt;P&gt;Profit&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; Profit&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;&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; TotalSell minus TotalPur&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Print out the contents of this data set using PROC PRINT .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The following is my SAS code :&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data   Stocks;
infile "C:\Users\liaodong\Documents\chapter 3\stockprices.txt";
input 
@1  Stock           $4.
@5  PurDate   mmddyy10.
@15 PurPrice   dollar6.
@21 Number           4.
@25 SellDate  mmddyy10.
@35 SellPrice  dollar6.
;
TotalPur = Number*PurPrice;
TotalSell = Number*SellPrice;
Profit = TotalSell-TotalPur;
format PurPrice SellPrice TotalPur TotalSell Profit dollar10.
       PurDate SellDate mmddyy10.;
run;

title "3.10 question";
proc print data = Stocks;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The following is the log:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;1068  data   Stocks;
1069  infile "C:\Users\liaodong\Documents\chapter 3\stockprices.txt";
1070  input
1071  @1  Stock           $4.
1072  @5  PurDate   mmddyy10.
1073  @15 PurPrice   dollar6.
1074  @21 Number           4.
1075  @25 SellDate  mmddyy10.
1076  @35 SellPrice  dollar6.
NOTE: The quoted string currently being processed has become more than 262 characters long.  You
      might have unbalanced quotation marks.
1077  ;
1078  TotalPur = Number*PurPrice;
1079  TotalSell = Number*SellPrice;
1080  Profit = TotalSell-TotalPur;
1069  infile "C:\Users\liaodong\Documents\chapter 3\stockprices.txt";
                                                                                    --
                                                                                    49
NOTE 49-169: The meaning of an identifier after a quoted string might change in a future SAS
             release.  Inserting white space between a quoted string and the succeeding identifier
             is recommended.

1081  format PurPrice SellPrice TotalPur TotalSell Profit dollar10.
1082         PurDate SellDate mmddyy10.;
1083  run;
1084
1085  title "3.10 question";
1086  proc print data = Stocks;
1087  run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 26 Dec 2020 01:17:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708235#M217611</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2020-12-26T01:17:43Z</dc:date>
    </item>
    <item>
      <title>Please help me to check the program? why does it not work?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708219#M217627</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data   Stocks;
infile "C:\Users\liaodong\Documents\chapter 3\stockprices.txt";
input 
@1  Stock           $4.
@5  PurDate   mmddyy10.
@15 PurPrice   dollar6.
@21 Number           4.
@25 SellDate  mmddyy10.
@35 SellPrice  dollar6.
;
TotalPur = Number*PurPrice;
TotalSell = Number*SellPrice;
Profit = TotalSell-TotalPur;
format PurPrice SellPrice TotalPur TotalSell Profit dollar10.
       PurDate SellDate mmddyy10.;
run;

title "3.10 question";
proc print data = Stocks;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 26 Dec 2020 01:51:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708219#M217627</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2020-12-26T01:51:51Z</dc:date>
    </item>
    <item>
      <title>please help to check the program, Why does it not work ? Thank you</title>
      <link>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708223#M217630</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tianerhu_0-1608939426925.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/53024i45E71A2916DE9296/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tianerhu_0-1608939426925.png" alt="tianerhu_0-1608939426925.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tianerhu_1-1608939445871.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/53025i526B3A7337575E94/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tianerhu_1-1608939445871.png" alt="tianerhu_1-1608939445871.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data   Stocks;
infile "C:\Users\liaodong\Documents\My SAS Files\9.4\chapter 3\stockprices.txt";
input 
@1  Stock           $4.
@5  PurDate   mmddyy10.
@15 PurPrice   dollar6.
@21 Number           4.
@25 SellDate  mmddyy10.
@35 SellPrice  dollar6.
;
TotalPur = Number*PurPrice;
TotalSell = Number*SellPrice;
Profit = TotalSell-TotalPur;
format PurPrice SellPrice TotalPur TotalSell Profit dollar10.
       PurDate SellDate mmddyy10.;
run;

title "3.10 question";
proc print data = Stocks;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 25 Dec 2020 23:38:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708223#M217630</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2020-12-25T23:38:27Z</dc:date>
    </item>
    <item>
      <title>Re: Please help me to check the program? why does it not work?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708224#M217628</link>
      <description>&lt;P&gt;Posting just SAS code only allows us to check the syntax and there is nothing significantly wrong. Please post your full SAS log including source statements, notes and errors as this should offer more clues as to what is happening.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Dec 2020 23:38:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708224#M217628</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2020-12-25T23:38:33Z</dc:date>
    </item>
    <item>
      <title>Re: Please help me to check the program? why does it not work?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708225#M217629</link>
      <description>&lt;P&gt;"Does not work" on its own is a completely useless message. Please describe in detail what is happening; post the log from your step(s), and post an example of your input file.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Dec 2020 23:39:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708225#M217629</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-12-25T23:39:22Z</dc:date>
    </item>
    <item>
      <title>Re: please help to check the program, Why does it not work ? Thank you</title>
      <link>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708226#M217631</link>
      <description>&lt;P&gt;Do not (as in&amp;nbsp;&lt;STRONG&gt;NOT&lt;/STRONG&gt;) post data in pictures. Copy/paste your text data into a code box.&lt;/P&gt;
&lt;P&gt;We cannot test your code against a picture.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Dec 2020 23:43:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708226#M217631</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-12-25T23:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: please help to check the program, Why does it not work ? Thank you</title>
      <link>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708227#M217632</link>
      <description>&lt;P&gt;And do not double-post. It does no good, and somebody needs to merge everything back into one thread.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Dec 2020 23:48:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708227#M217632</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-12-25T23:48:25Z</dc:date>
    </item>
    <item>
      <title>Re: please help to check the program, Why does it not work ? Thank you</title>
      <link>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708228#M217633</link>
      <description>Ok , Thank you.</description>
      <pubDate>Sat, 26 Dec 2020 00:49:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708228#M217633</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2020-12-26T00:49:48Z</dc:date>
    </item>
    <item>
      <title>Re: Please help me to check the program? why does it not work?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708229#M217634</link>
      <description>Thank you .</description>
      <pubDate>Sat, 26 Dec 2020 00:51:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708229#M217634</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2020-12-26T00:51:59Z</dc:date>
    </item>
    <item>
      <title>Re: Please help me to check the program? why does it not work?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708230#M217635</link>
      <description />
      <pubDate>Sat, 26 Dec 2020 00:52:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708230#M217635</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2020-12-26T00:52:07Z</dc:date>
    </item>
    <item>
      <title>Re: Please help me to check the program? why does it not work?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708231#M217636</link>
      <description>Thank you</description>
      <pubDate>Sat, 26 Dec 2020 00:52:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708231#M217636</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2020-12-26T00:52:17Z</dc:date>
    </item>
    <item>
      <title>Re: why it doesn't work , please give me help</title>
      <link>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708236#M217612</link>
      <description>&lt;P&gt;data Stocks;&lt;BR /&gt;infile "**your path**\stockprices.txt";&lt;BR /&gt;input&lt;BR /&gt;@1 Stock: $4.&lt;BR /&gt;@5 PurDate: mmddyy10.&lt;BR /&gt;@15 PurPrice: dollar6.&lt;BR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/78374"&gt;@21&lt;/a&gt; Number 4.&lt;BR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/54795"&gt;@25&lt;/a&gt; SellDate: mmddyy10.&lt;BR /&gt;@35 SellPrice: dollar6.&lt;BR /&gt;;&lt;BR /&gt;TotalPur = Number*PurPrice;&lt;BR /&gt;TotalSell = Number*SellPrice;&lt;BR /&gt;Profit = TotalSell-TotalPur;&lt;BR /&gt;format PurPrice SellPrice TotalPur TotalSell Profit dollar10.&lt;BR /&gt;PurDate SellDate mmddyy10.;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;title "3.10 question";&lt;BR /&gt;proc print data = Stocks;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try to add colon after variables except number.&lt;/P&gt;</description>
      <pubDate>Sat, 26 Dec 2020 02:04:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708236#M217612</guid>
      <dc:creator>Derek_Hu</dc:creator>
      <dc:date>2020-12-26T02:04:36Z</dc:date>
    </item>
    <item>
      <title>Re: why it doesn't work , please give me help</title>
      <link>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708238#M217613</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/268447"&gt;@tianerhu&lt;/a&gt;&amp;nbsp; - Please focus on the first note of your log:&lt;/P&gt;
&lt;PRE&gt;NOTE: The quoted string currently being processed has become more than 262 characters long.  You
      might have unbalanced quotation marks.&lt;/PRE&gt;
&lt;P&gt;You have an opening quote mark earlier in your program without a closing quote mark that is turning all of your code into one long character string. That's why it is not running as you expect. Fix that problem and your program will run a lot better.&lt;/P&gt;</description>
      <pubDate>Sat, 26 Dec 2020 02:21:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708238#M217613</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2020-12-26T02:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: why it doesn't work , please give me help</title>
      <link>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708239#M217614</link>
      <description>In my code, just one place using quote mark,  I have a closing quote mark.</description>
      <pubDate>Sat, 26 Dec 2020 02:50:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708239#M217614</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2020-12-26T02:50:41Z</dc:date>
    </item>
    <item>
      <title>Re: why it doesn't work , please give me help</title>
      <link>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708240#M217615</link>
      <description>Thank you , but I think that is not right.</description>
      <pubDate>Sat, 26 Dec 2020 02:53:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708240#M217615</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2020-12-26T02:53:47Z</dc:date>
    </item>
    <item>
      <title>Re: why it doesn't work , please give me help</title>
      <link>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708241#M217616</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/268447"&gt;@tianerhu&lt;/a&gt;&amp;nbsp; - It's possible your closing quote is not being recognised by SAS for some reason. Remove the line/s with the quotes and retest your program. If that doesn't fix your problem post your COMPLETE SAS log so we can check what is happening earlier in your program.&lt;/P&gt;</description>
      <pubDate>Sat, 26 Dec 2020 03:29:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708241#M217616</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2020-12-26T03:29:03Z</dc:date>
    </item>
    <item>
      <title>Re: why it doesn't work , please give me help</title>
      <link>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708242#M217617</link>
      <description>Thank you for your help, SASKiwi . &lt;BR /&gt;&lt;BR /&gt;I close the SAS software, and restart it , then my code runs well. &lt;BR /&gt;I don't know why , I did't fix my code. Just restart SAS.</description>
      <pubDate>Sat, 26 Dec 2020 04:14:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/why-it-doesn-t-work-please-give-me-help/m-p/708242#M217617</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2020-12-26T04:14:24Z</dc:date>
    </item>
  </channel>
</rss>

