<?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: Use &amp;amp;&amp;amp; in data step in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450871#M283770</link>
    <description>&lt;P&gt;Doesn't work is awful vague.&lt;BR /&gt;&lt;BR /&gt;Are there errors in the log?: Post the code and log in a code box opened with the {i} to maintain formatting of error messages.&lt;BR /&gt;&lt;BR /&gt;No output? Post any log in a code box.&lt;BR /&gt;&lt;BR /&gt;Unexpected output? Provide input data in the form of a dataset, the actual results and the expected results. Data should be in the form of a data step. Instructions here: &lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-dat" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-dat&lt;/A&gt;... will show how to turn an existing SAS data set into data step code that can be pasted into a forum code box using the {i} icon or attached as text to show exactly what you have and that we can test code against.&lt;/P&gt;</description>
    <pubDate>Tue, 03 Apr 2018 20:22:56 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2018-04-03T20:22:56Z</dc:date>
    <item>
      <title>Use &amp;&amp; in data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450755#M283758</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd like to if it is possible to call macro variables by do loop in data step and how to achieve that.&lt;/P&gt;&lt;P&gt;Specifically, how to make the following code work?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;%let var1 = varName1;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;%let var2 = varName2;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;data dsTest;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; do i=1 to 2;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp;&amp;amp;var&amp;amp;i = i;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; end;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;SPAN&gt;Thanks for your help.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Apr 2018 17:17:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450755#M283758</guid>
      <dc:creator>liangchh0</dc:creator>
      <dc:date>2018-04-03T17:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: Use &amp;&amp; in data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450757#M283759</link>
      <description>&lt;P&gt;SYMGET() function&lt;/P&gt;</description>
      <pubDate>Tue, 03 Apr 2018 17:21:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450757#M283759</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-04-03T17:21:51Z</dc:date>
    </item>
    <item>
      <title>Re: Use &amp;&amp; in data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450759#M283760</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let var1 = varName1;
%let var2 = varName2;
data dsTest;
    %do i=1 %to 2;
        &amp;amp;&amp;amp;var&amp;amp;i = &amp;amp;i;
    %end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Only works inside a macro (can't have a %do loop in open code)&lt;/P&gt;</description>
      <pubDate>Tue, 03 Apr 2018 17:44:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450759#M283760</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-04-03T17:44:26Z</dc:date>
    </item>
    <item>
      <title>Re: Use &amp;&amp; in data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450762#M283761</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/192274"&gt;@liangchh0&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'd like to if it is possible to call macro variables by do loop in data step and how to achieve that.&lt;/P&gt;
&lt;P&gt;Specifically, how to make the following code work?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;%let var1 = varName1;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;%let var2 = varName2;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;data dsTest;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; do i=1 to 2;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp;&amp;amp;var&amp;amp;i = i;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; end;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;SPAN&gt;Thanks for your help.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Since the macro triggers are evaluated &lt;STRONG&gt;BEFORE&amp;nbsp;&lt;/STRONG&gt;the data step is compiled and runs, data step variable i&amp;nbsp;&lt;STRONG&gt;cannot&amp;nbsp;&lt;/STRONG&gt;be used to indirectly address macro variables. If you need dynamic access to data step variables, use array processing.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Apr 2018 17:42:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450762#M283761</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-04-03T17:42:30Z</dc:date>
    </item>
    <item>
      <title>Re: Use &amp;&amp; in data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450770#M283762</link>
      <description>&lt;P&gt;Hi KurtBremser,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;I've tried the following modification but it still doesn't work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;data dsTest;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; array varArray (2) var1-var2;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; do i=1 to 2;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp;array(i) = i;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; end;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;SPAN&gt;Could you please show me an example?&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;SPAN&gt;Thank you so much.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Apr 2018 18:08:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450770#M283762</guid>
      <dc:creator>liangchh0</dc:creator>
      <dc:date>2018-04-03T18:08:17Z</dc:date>
    </item>
    <item>
      <title>Re: Use &amp;&amp; in data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450772#M283763</link>
      <description>Thanks for your reply. The code doesn't seem to work. Is there a typo or any further modification required?</description>
      <pubDate>Tue, 03 Apr 2018 18:11:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450772#M283763</guid>
      <dc:creator>liangchh0</dc:creator>
      <dc:date>2018-04-03T18:11:19Z</dc:date>
    </item>
    <item>
      <title>Re: Use &amp;&amp; in data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450773#M283764</link>
      <description>&lt;P&gt;Almost there. See:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data dsTest;
    array varArray (2) var1-var2;
    do i=1 to 2;
        vararray(i) = i;
    end;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 03 Apr 2018 18:12:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450773#M283764</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-04-03T18:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: Use &amp;&amp; in data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450776#M283765</link>
      <description>Thanks for your reply. As far as I know, symget() is usually applied to the right-hand side of "=". I've tried&lt;BR /&gt;data dsTest;&lt;BR /&gt;do i=1 to 2;&lt;BR /&gt;symget(cats('var',i)) = i;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;but it didn't work.&lt;BR /&gt;Could you show me explicitly how to make symget() work in this situation?&lt;BR /&gt;Thank you so much.</description>
      <pubDate>Tue, 03 Apr 2018 18:15:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450776#M283765</guid>
      <dc:creator>liangchh0</dc:creator>
      <dc:date>2018-04-03T18:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: Use &amp;&amp; in data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450784#M283766</link>
      <description>Thanks for your reply. What I actually need is to call macro variable var1 and var2 such that&lt;BR /&gt;&lt;BR /&gt;var1=1 becomes varName1=1&lt;BR /&gt;&lt;BR /&gt;Is there a way to achieve that?&lt;BR /&gt;Thank you.</description>
      <pubDate>Tue, 03 Apr 2018 18:19:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450784#M283766</guid>
      <dc:creator>liangchh0</dc:creator>
      <dc:date>2018-04-03T18:19:49Z</dc:date>
    </item>
    <item>
      <title>Re: Use &amp;&amp; in data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450802#M283767</link>
      <description>&lt;P&gt;Try something like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let var1 = varName1;
%let var2 = varName2;

data dsTest;
%let Count=1;
count=1;
    do i=1 to 2;

        &amp;amp;&amp;amp;var&amp;amp;Count = count;
		count+1;&lt;BR /&gt;Call symput("Count",count);

    end;

run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 03 Apr 2018 18:54:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450802#M283767</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-04-03T18:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: Use &amp;&amp; in data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450817#M283768</link>
      <description>&lt;P&gt;That won't work either, because &amp;amp;&amp;amp;var&amp;amp;count will be evaluated before the data step runs and executes the call symput.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Apr 2018 19:14:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450817#M283768</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-04-03T19:14:04Z</dc:date>
    </item>
    <item>
      <title>Re: Use &amp;&amp; in data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450824#M283769</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;Your right, I'm totally wrong about using CALL SYMPUT there before the Data step is executed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/192274"&gt;@liangchh0&lt;/a&gt;&amp;nbsp;Did you try the solution&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&amp;nbsp;mentioned, You need to not that it has to be enclosed in a macro.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let var1 = varName1;
%let var2 = varName2;
OPTIONS symbolgen mprint mlogic;
%MACRO test();
data dsTest(drop=i);
count=1;
    %do i=1 %to 2;
        &amp;amp;&amp;amp;var&amp;amp;i = &amp;amp;i;
%end;

run;
%MEND test;
%test;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 03 Apr 2018 19:28:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450824#M283769</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-04-03T19:28:56Z</dc:date>
    </item>
    <item>
      <title>Re: Use &amp;&amp; in data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450871#M283770</link>
      <description>&lt;P&gt;Doesn't work is awful vague.&lt;BR /&gt;&lt;BR /&gt;Are there errors in the log?: Post the code and log in a code box opened with the {i} to maintain formatting of error messages.&lt;BR /&gt;&lt;BR /&gt;No output? Post any log in a code box.&lt;BR /&gt;&lt;BR /&gt;Unexpected output? Provide input data in the form of a dataset, the actual results and the expected results. Data should be in the form of a data step. Instructions here: &lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-dat" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-dat&lt;/A&gt;... will show how to turn an existing SAS data set into data step code that can be pasted into a forum code box using the {i} icon or attached as text to show exactly what you have and that we can test code against.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Apr 2018 20:22:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450871#M283770</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-04-03T20:22:56Z</dc:date>
    </item>
    <item>
      <title>Re: Use &amp;&amp; in data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450883#M283771</link>
      <description>&lt;P&gt;The code does work properly after I restart SAS.&lt;/P&gt;&lt;P&gt;Sorry for the confusion.&lt;/P&gt;&lt;P&gt;I have no idea why it didn't work before.&lt;/P&gt;&lt;P&gt;Somehow SAS acts weird after I&amp;nbsp;canceling submissions.&lt;/P&gt;&lt;P&gt;Here&amp;nbsp;are the error messages I got when that happens.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1732 %MACRO test();&lt;BR /&gt;1733 data dsTest;&lt;BR /&gt;1734 %let var1 = varName1;&lt;BR /&gt;1735 %let var2 = varName2;&lt;BR /&gt;1736 %do i=1 %to 2;&lt;BR /&gt;1737 &amp;amp;&amp;amp;var&amp;amp;i = &amp;amp;i;&lt;BR /&gt;1738 %end;&lt;BR /&gt;1739 run;&lt;BR /&gt;1740 %MEND test;&lt;BR /&gt;1741 %test;&lt;BR /&gt;MPRINT(TEST): data dsTest;&lt;BR /&gt;WARNING: Apparent symbolic reference VAR not resolved.&lt;BR /&gt;NOTE: Line generated by the invoked macro "TEST".&lt;BR /&gt;3 &amp;amp;&amp;amp;var&amp;amp;i = &amp;amp;i;&lt;BR /&gt;-&lt;BR /&gt;180&lt;BR /&gt;MPRINT(TEST): &amp;amp;&amp;amp;var1 = 1;&lt;BR /&gt;WARNING: Apparent symbolic reference VAR not resolved.&lt;BR /&gt;NOTE: Line generated by the invoked macro "TEST".&lt;BR /&gt;5 &amp;amp;&amp;amp;var&amp;amp;i = &amp;amp;i;&lt;BR /&gt;-&lt;BR /&gt;180&lt;BR /&gt;MPRINT(TEST): &amp;amp;&amp;amp;var2 = 2;&lt;BR /&gt;MPRINT(TEST): run;&lt;/P&gt;&lt;P&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;WARNING: The data set WORK.DSTEST may be incomplete. When this step was stopped there were 0&lt;BR /&gt;observations and 0 variables.&lt;BR /&gt;WARNING: Data set WORK.DSTEST was not replaced because this step was stopped.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I guess SAS is trying to finish the canceled statements and mixing them with the current statements.&lt;/P&gt;&lt;P&gt;Do you know&amp;nbsp;how to tell SAS to "forget" the unfinished execution?&lt;/P&gt;</description>
      <pubDate>Tue, 03 Apr 2018 20:48:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450883#M283771</guid>
      <dc:creator>liangchh0</dc:creator>
      <dc:date>2018-04-03T20:48:37Z</dc:date>
    </item>
    <item>
      <title>Re: Use &amp;&amp; in data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450890#M283772</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/192274"&gt;@liangchh0&lt;/a&gt; wrote:&lt;BR /&gt;Thanks for your reply. The code doesn't seem to work. Is there a typo or any further modification required?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Utterly useless to say it "doesn't seem to work".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tell us what happened. Show us the SASLOG, with&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options mprint; &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;before your code.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Apr 2018 20:59:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Use-amp-amp-in-data-step/m-p/450890#M283772</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-04-03T20:59:17Z</dc:date>
    </item>
  </channel>
</rss>

