<?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: Processing submitted statements in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/397818#M96166</link>
    <description>&lt;P&gt;This shouldn't be a macro in my opinion.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Rather than use a loop to call PROC EXPORT use CALL EXECUTE instead. It's much cleaner and easier.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's your code formatted for legibility. If you're using SAS EG, hightlight your code and press CTRL+I or in SAS Studio its' the second last icon in the menu bar.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro prepare_outfiles;
	proc sql ;
		create table mytables as select distinct memname from dictionary.tables where 
			lowcase(libname)="mylib" order by memname;
	quit;

	data _null_;
		set mytables end=eof;

		if eof then
			call symputx('e_o_f', _n_);
		_export=cats('outfile', _n_);
		call symputx(_export, memname);
	run;

	%do i=1 %to &amp;amp;e_o_f.;
		%put &amp;amp;&amp;amp;outfile&amp;amp;i.;

		proc export data=mylib..&amp;amp;&amp;amp;outfile&amp;amp;i.
			outfile="&amp;amp;tsv_output.\&amp;amp;&amp;amp;outfile&amp;amp;i...tsv" dbms=tab replace;
		run;

	%end;
%mend prepare_outfiles;

%prepare_outfiles;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 21 Sep 2017 16:16:03 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2017-09-21T16:16:03Z</dc:date>
    <item>
      <title>Processing submitted statements</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/397811#M96163</link>
      <description>&lt;P&gt;There are 11 datasets and I want to export as .tsv files.&lt;BR /&gt;OUTFILE1 resolves and exports the dataset to a tsv file.&lt;BR /&gt;there is no progress afterward,SAS is stuck and displays processing submitted statements for a very long time (6hrs).&lt;/P&gt;&lt;P&gt;%macro prepare_outfiles;&lt;BR /&gt;proc sql ;&lt;BR /&gt;create table mytables as&lt;BR /&gt;select distinct memname&lt;BR /&gt;from dictionary.tables&lt;BR /&gt;where lowcase(libname) = "mylib"&lt;BR /&gt;order by memname ;&lt;BR /&gt;quit ;&lt;BR /&gt;data _null_;&lt;BR /&gt;set mytables end = eof;&lt;BR /&gt;if eof then call symputx('e_o_f',_n_);&lt;BR /&gt;_export = cats('outfile',_n_);&lt;BR /&gt;call symputx(_export,memname);&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;%do&lt;BR /&gt;i= 1 %to &amp;amp;e_o_f.;&lt;BR /&gt;%put &amp;amp;&amp;amp;outfile&amp;amp;i.;&lt;BR /&gt;&lt;BR /&gt;proc export data=mylib..&amp;amp;&amp;amp;outfile&amp;amp;i.&lt;BR /&gt;outfile="&amp;amp;tsv_output.\&amp;amp;&amp;amp;outfile&amp;amp;i...tsv"&lt;BR /&gt;dbms=tab replace;&lt;BR /&gt;run;&lt;BR /&gt;%end;&lt;BR /&gt;%mend prepare_outfiles;&lt;BR /&gt;%prepare_outfiles;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Sep 2017 15:54:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/397811#M96163</guid>
      <dc:creator>SASPhile</dc:creator>
      <dc:date>2017-09-21T15:54:58Z</dc:date>
    </item>
    <item>
      <title>Re: Processing submitted statements</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/397818#M96166</link>
      <description>&lt;P&gt;This shouldn't be a macro in my opinion.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Rather than use a loop to call PROC EXPORT use CALL EXECUTE instead. It's much cleaner and easier.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's your code formatted for legibility. If you're using SAS EG, hightlight your code and press CTRL+I or in SAS Studio its' the second last icon in the menu bar.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro prepare_outfiles;
	proc sql ;
		create table mytables as select distinct memname from dictionary.tables where 
			lowcase(libname)="mylib" order by memname;
	quit;

	data _null_;
		set mytables end=eof;

		if eof then
			call symputx('e_o_f', _n_);
		_export=cats('outfile', _n_);
		call symputx(_export, memname);
	run;

	%do i=1 %to &amp;amp;e_o_f.;
		%put &amp;amp;&amp;amp;outfile&amp;amp;i.;

		proc export data=mylib..&amp;amp;&amp;amp;outfile&amp;amp;i.
			outfile="&amp;amp;tsv_output.\&amp;amp;&amp;amp;outfile&amp;amp;i...tsv" dbms=tab replace;
		run;

	%end;
%mend prepare_outfiles;

%prepare_outfiles;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 Sep 2017 16:16:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/397818#M96166</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-09-21T16:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: Processing submitted statements</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/397819#M96167</link>
      <description>&lt;P&gt;You have two issues with . that maybe causing this:&lt;/P&gt;
&lt;PRE&gt;proc export data=mylib..&amp;amp;&amp;amp;outfile&amp;amp;i.&lt;/PRE&gt;
&lt;P&gt;Since MYLIB is not a macro variable this is creating: data=mylib..resolvedfirstdataset&amp;nbsp; so you should be getting lots of errors.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Second in&lt;/P&gt;
&lt;PRE&gt;outfile="&amp;amp;tsv_output.\&amp;amp;&amp;amp;outfile&amp;amp;i...tsv"&lt;/PRE&gt;
&lt;P&gt;You have &lt;STRONG&gt;3&lt;/STRONG&gt; periods wher you want 2.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also you can replace the proc sql and data step with this&lt;/P&gt;
&lt;PRE&gt;proc sql noprint;
select distinct memname into : outfile1- :outfile100
from dictionary.tables
where lowcase(libname) = "mylib"
order by memname ;
quit ;

%let e_o_f = &amp;amp;sqlobs;
&lt;/PRE&gt;
&lt;P&gt;Proc sql will select values into macro variables with the INTO instruction the way it is dont above will place each memname into a separate macro variable (as long as there are not more than 100 in the library) and &lt;STRONG&gt;only use &lt;/STRONG&gt;as many as are needed if less than 100. Proc Sql also creates an automatic macro variable that has the number of records returned by the previous sql operation. So you can assign it to your counter.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Sep 2017 16:18:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/397819#M96167</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-09-21T16:18:26Z</dc:date>
    </item>
    <item>
      <title>Re: Processing submitted statements</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/397825#M96170</link>
      <description>&lt;P&gt;A note that you don't need the last entry here, this also works to create just the list of macro variables you need:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;select distinct memname into : outfile1- &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; 1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 55         
 56         proc sql noprint;
 57         select name into :names1 -
 58         from sashelp.class;
 59         quit;
 NOTE: PROCEDURE SQL used (Total process time):
       real time           0.00 seconds
       cpu time            0.00 seconds
       
 
 60         
 61         %put &amp;amp;names1;
 Alfred
 62         %put &amp;amp;names19;
 William
 63      
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Like I mentioned, a macro is overkill here. See the example below. The STR variable becomes the PROC EXPORT you need and then CALL EXECUTE will execute the code. A single data step is sufficient here.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The STR variable is not created correctly, I'll leave that as an exercise to you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data export_list;
	set sashelp.vtable;
	where lowcase(libname)='sashelp';
	
	length str $200.;
	
	*not correct right now , but you can customize this to match your needs;
	str=catt('proc export data=mylib.', trim(memname), ' outfile=', trim(memname), 
		"_output\", trim(memname), '.tsv dbms=tab replace;  run;');
		
	*once the proc export is correct then uncomment this;
	*call execute(str);
	
	keep libname memname str;
run;
&lt;/CODE&gt;&lt;/PRE&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, 21 Sep 2017 16:37:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/397825#M96170</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-09-21T16:37:16Z</dc:date>
    </item>
    <item>
      <title>Re: Processing submitted statements</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/397833#M96171</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt; wrote:&lt;BR /&gt;&lt;P&gt;This shouldn't be a macro in my opinion.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Rather than use a loop to call PROC EXPORT use CALL EXECUTE instead. It's much cleaner and easier.&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can't fully agree. With call execute you avoid coding the loop but make the code to be executed more difficult to read. For a single proc export this is bearable, but not for anything longer than two lines of code.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Sep 2017 17:10:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/397833#M96171</guid>
      <dc:creator>error_prone</dc:creator>
      <dc:date>2017-09-21T17:10:53Z</dc:date>
    </item>
    <item>
      <title>Re: Processing submitted statements</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/397836#M96173</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/43025"&gt;@error_prone&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;This shouldn't be a macro in my opinion.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Rather than use a loop to call PROC EXPORT use CALL EXECUTE instead. It's much cleaner and easier.&amp;nbsp;&lt;/P&gt;
&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can't fully agree. With call execute you avoid coding the loop but make the code to be executed more difficult to read. For a single proc export this is bearable, but not for anything longer than two lines of code.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/43025"&gt;@error_prone&lt;/a&gt;&amp;nbsp;I sort of agree. The comments above are in context of&amp;nbsp;the question the OP posed, but for longer code I probably wouldn't use CALL EXECUTE directly. I'd likely wrap the code in a macro and then use CALL EXECUTE to call it as needed.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Sep 2017 17:22:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/397836#M96173</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-09-21T17:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: Processing submitted statements</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/398320#M96338</link>
      <description>&lt;P&gt;Tried to exapnd call execute to sort multiple datasets,with by variables and dataset names in dataset.the call execute doest seem to work as expected.&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;P&gt;data _tablelist;&lt;BR /&gt;input dsn $1-2 ordby $4-65;&lt;BR /&gt;datalines;&lt;BR /&gt;ae&amp;nbsp;start_date end_date&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;data _null;&lt;BR /&gt;set _tablelist;&lt;BR /&gt;call execute ("proc sort data=libref.'||strip(dsn)||' 'out=' dsn;&lt;BR /&gt;'by' ordby; run;");&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sort data=libref.'||strip(dsn)||' 'out=' dsn; 'by' ordby; run;&lt;BR /&gt;---------------- ----&lt;BR /&gt;22 180&lt;BR /&gt;76&lt;BR /&gt;ERROR: Invalid data set name libref..&lt;/P&gt;&lt;P&gt;ERROR 22-322: Syntax error, expecting one of the following: ;, (, ASCII, BUFFNO, DANISH, DATA,&lt;BR /&gt;DATECOPY, DETAILS, DIAG, DUPOUT, EBCDIC, EQUALS, FINNISH, FORCE, IN, ISA, L, LEAVE,&lt;BR /&gt;LIST, MESSAGE, MSG, NATIONAL, NODUP, NODUPKEY, NODUPKEYS, NODUPLICATE,&lt;BR /&gt;NODUPLICATES, NODUPREC, NODUPRECS, NODUPS, NOEQUALS, NORWEGIAN, NOTHREADS,&lt;BR /&gt;NOUNIKEY, NOUNIKEYS, NOUNIQUEKEY, NOUNIQUEKEYS, NOUNIQUEREC, NOUNIQUERECS,&lt;BR /&gt;NOUNIREC, NOUNIRECS, OSA, OUT, OVERWRITE, PAGESIZE, PRESORTED, PSIZE, REVERSE,&lt;BR /&gt;SIZE, SORTSEQ, SORTSIZE, SORTWKNO, SWEDISH, T, TAGSORT, TECH, TECHNIQUE, TESTHSI,&lt;BR /&gt;THREADS, UNIOUT, UNIQUEOUT, WKNO, WORKNO.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 23 Sep 2017 22:40:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/398320#M96338</guid>
      <dc:creator>SASPhile</dc:creator>
      <dc:date>2017-09-23T22:40:31Z</dc:date>
    </item>
    <item>
      <title>Re: Processing submitted statements</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/398330#M96340</link>
      <description>&lt;P&gt;You have unbalanced quotes. &amp;nbsp;If find the CAT series of functions easier to deal with than the || operator.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _tablelist;
  length dsn $32 ;
  input dsn ordby $62. ;
datalines;
ae start_date end_date
;

data _null;
  set _tablelist;
  call execute (catx(' '
,'proc sort data=', cats('libref.',dsn)
,'out=',dsn,';'
,'by',ordby,'; run;'
));
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 24 Sep 2017 00:44:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/398330#M96340</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-09-24T00:44:13Z</dc:date>
    </item>
    <item>
      <title>Re: Processing submitted statements</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/398331#M96341</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16600"&gt;@SASPhile&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;You've got the quoting wrong for example&amp;nbsp;&lt;EM&gt;strip(dsn)&lt;/EM&gt; doesn't get resolved.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The log actually tells you what call execute() tried to execute. This line in your log needs to be fully valid SAS syntax.&lt;/P&gt;
&lt;PRE&gt;proc sort data=libref.'||strip(dsn)||' 'out=' dsn; 'by' ordby; run;&lt;/PRE&gt;</description>
      <pubDate>Sun, 24 Sep 2017 00:46:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/398331#M96341</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2017-09-24T00:46:36Z</dc:date>
    </item>
    <item>
      <title>Re: Processing submitted statements</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/398336#M96343</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16600"&gt;@SASPhile&lt;/a&gt;&amp;nbsp;And this is why I recommend&amp;nbsp;the method of building a STR (string variable) first and then passing it to CALL EXECUTE. Then you can first validate your string is correct SAS code. If you cannot paste the code in the STR variable directly into your SAS editor and run it, your code is incorrect.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It also seems like your original question has been answered.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 24 Sep 2017 01:46:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/398336#M96343</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-09-24T01:46:36Z</dc:date>
    </item>
    <item>
      <title>Re: Processing submitted statements</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/398338#M96344</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16600"&gt;@SASPhile&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;And to add to&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;'s 2nd post: Please start marking the answer which helped you most as correct answer/solution. That's one of the courtesy rules in the SAS forums.&lt;/P&gt;
&lt;P&gt;I just went through your past questions and it appears you haven't used this forum functionality yet.&lt;/P&gt;</description>
      <pubDate>Sun, 24 Sep 2017 01:58:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/398338#M96344</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2017-09-24T01:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: Processing submitted statements</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/452467#M114196</link>
      <description>&lt;P&gt;Could you explain what is the 'unbalanced quotes'? I have the same problem as 'processing submitted statements' for a very long time.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Apr 2018 11:19:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/452467#M114196</guid>
      <dc:creator>doreamonjin</dc:creator>
      <dc:date>2018-04-09T11:19:37Z</dc:date>
    </item>
    <item>
      <title>Re: Processing submitted statements</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/452511#M114207</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/203656"&gt;@doreamonjin&lt;/a&gt;&amp;nbsp;It means you had an open quote in one location and didn't have a close quote somewhere:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;x = 'some string ; *note that this is missing a closing quote;
y = 'mismatched quotes"; *note that in this example, single and double quotes are mixed which does not work;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 09 Apr 2018 14:55:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/452511#M114207</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-04-09T14:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: Processing submitted statements</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/452523#M114220</link>
      <description>&lt;P&gt;Thank you so much&lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;&lt;span class="lia-unicode-emoji" title=":clapping_hands:"&gt;👏🏻&lt;/span&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;but this might not be the problem of my macro. I have a regression macro and when it is dealing with two variables, it usually takes around 20 min. Do you know what might cause this problem?&lt;/P&gt;</description>
      <pubDate>Mon, 09 Apr 2018 15:23:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/452523#M114220</guid>
      <dc:creator>doreamonjin</dc:creator>
      <dc:date>2018-04-09T15:23:34Z</dc:date>
    </item>
    <item>
      <title>Re: Processing submitted statements</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/452526#M114222</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/203656"&gt;@doreamonjin&lt;/a&gt;&amp;nbsp;Please create a new thread with the details of your own question. Include as much detail as possible including your code and the log.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Apr 2018 15:28:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Processing-submitted-statements/m-p/452526#M114222</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-04-09T15:28:59Z</dc:date>
    </item>
  </channel>
</rss>

