<?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: Macro input didn't work? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796331#M255523</link>
    <description>I can't use the newvar names after formating the dataset, because I can't disguise which ones they are.  How to keep my old var names.</description>
    <pubDate>Tue, 15 Feb 2022 16:43:22 GMT</pubDate>
    <dc:creator>ybz12003</dc:creator>
    <dc:date>2022-02-15T16:43:22Z</dc:date>
    <item>
      <title>Macro input didn't work?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796290#M255505</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I create a macro variable list that wanna change its format from text to numeric (4 digits).&amp;nbsp; However, I found the format is still text though the log window showed that it's done.&amp;nbsp; I don't know what I have done wrong.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
	select trim(name) into : FalseChalist separated by ' '  from ARI1617_falsecha;
quit;

%put &amp;amp;FalseChalist;

data ARI1617_format;
	set ARI1617;
	array vars &amp;amp;&amp;amp;FalseChalist.;
    do over vars;
        Vars=input(Vars, best4.);
    end;
run;

proc contents data=ARI1617_format; run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;180 proc sql;&lt;BR /&gt;181 select trim(name) into : FalseChalist separated by ' ' from ARI1617_falsecha;&lt;BR /&gt;182 quit;&lt;BR /&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;BR /&gt;real time 0.03 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;SYMBOLGEN: Macro variable FALSECHALIST resolves to uairway uallergy uapnea uendo ugastro ugerd&lt;BR /&gt;ugestage uprem&lt;BR /&gt;183&lt;BR /&gt;184 %put &amp;amp;FalseChalist;&lt;BR /&gt;uairway uallergy uapnea uendo ugastro ugerd ugestage uprem&lt;BR /&gt;185&lt;BR /&gt;186 data ARI1617_format;&lt;BR /&gt;187 set ARI1617;&lt;BR /&gt;188 array vars &amp;amp;FalseChalist.;&lt;BR /&gt;SYMBOLGEN: Macro variable FALSECHALIST resolves to uairway uallergy uapnea uendo ugastro ugerd&lt;BR /&gt;ugestage uprem&lt;BR /&gt;189 do over vars;&lt;BR /&gt;190 Vars=input(Vars, best4.);&lt;BR /&gt;191 end;&lt;BR /&gt;192 run;&lt;/P&gt;
&lt;P&gt;NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).&lt;BR /&gt;190:9&lt;BR /&gt;NOTE: There were 1201 observations read from the data set WORK.ARI1617.&lt;BR /&gt;NOTE: The data set WORK.ARI1617_FORMAT has 1201 observations and 50 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.02 seconds&lt;BR /&gt;cpu time 0.03 seconds&lt;/P&gt;</description>
      <pubDate>Tue, 15 Feb 2022 15:23:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796290#M255505</guid>
      <dc:creator>ybz12003</dc:creator>
      <dc:date>2022-02-15T15:23:39Z</dc:date>
    </item>
    <item>
      <title>Re: Macro input didn't work?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796305#M255508</link>
      <description>&lt;P&gt;Once a SAS variable exists the type is set. You cannot change the type.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My personal suggestion if you changing that many variables is to go back to the step where you read the data into SAS and control it there as it may be the easiest.&lt;/P&gt;
&lt;P&gt;Otherwise you have to create new variables.&lt;/P&gt;
&lt;P&gt;For a single variable the approach can look like this:&lt;/P&gt;
&lt;PRE&gt;data want; 
    set have (rename=(var=oldvar));
    var = input(oldvar, 4.);
    drop oldvar;
run;&lt;/PRE&gt;
&lt;P&gt;Since you could use an array of new variables this would be the approach (Note: Do Over doesn't always work as expected with TWO arrays involved and since it isn't even in the documentation I would suggest not using it habitually.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="sas"&gt;proc sql;
	select trim(name) into : FalseChalist separated by ' '  from ARI1617_falsecha;
quit;
/* this should have the number of variables if your data is correct*/
%let varcount = &amp;amp;sqlobs;

%put &amp;amp;FalseChalist;

data ARI1617_format;
	set ARI1617;
	array old (*) &amp;amp;FalseChalist.;
        array newvar (&amp;amp;sqlobs);
    do i=1 to dim(old);
        Newvar[i]=input(old[i], best4.);
    end;
   drop i  &amp;amp;FalseChalist.;
run;
&lt;/LI-CODE&gt;
&lt;P&gt;You could use a similar Proc SQL step to create macro variable to create the NEW names. Or a rename clause for use in a data step option similar to my first example.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I note that once again the code posted is not the code you actually ran. Note that you showed &amp;amp;&amp;amp;FalseChaList in the ARRAY statement but your log shows &amp;amp;FalseChalist. If you had used that &amp;amp;&amp;amp; there would have been unreferenced variable errors.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/67134"&gt;@ybz12003&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I create a macro variable list that wanna change its format from text to numeric (4 digits).&amp;nbsp; However, I found the format is still text though the log window showed that it's done.&amp;nbsp; I don't know what I have done wrong.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
	select trim(name) into : FalseChalist separated by ' '  from ARI1617_falsecha;
quit;

%put &amp;amp;FalseChalist;

data ARI1617_format;
	set ARI1617;
	array vars &amp;amp;&amp;amp;FalseChalist.;
    do over vars;
        Vars=input(Vars, best4.);
    end;
run;

proc contents data=ARI1617_format; run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;180 proc sql;&lt;BR /&gt;181 select trim(name) into : FalseChalist separated by ' ' from ARI1617_falsecha;&lt;BR /&gt;182 quit;&lt;BR /&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;BR /&gt;real time 0.03 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;SYMBOLGEN: Macro variable FALSECHALIST resolves to uairway uallergy uapnea uendo ugastro ugerd&lt;BR /&gt;ugestage uprem&lt;BR /&gt;183&lt;BR /&gt;184 %put &amp;amp;FalseChalist;&lt;BR /&gt;uairway uallergy uapnea uendo ugastro ugerd ugestage uprem&lt;BR /&gt;185&lt;BR /&gt;186 data ARI1617_format;&lt;BR /&gt;187 set ARI1617;&lt;BR /&gt;188 array vars &amp;amp;FalseChalist.;&lt;BR /&gt;SYMBOLGEN: Macro variable FALSECHALIST resolves to uairway uallergy uapnea uendo ugastro ugerd&lt;BR /&gt;ugestage uprem&lt;BR /&gt;189 do over vars;&lt;BR /&gt;190 Vars=input(Vars, best4.);&lt;BR /&gt;191 end;&lt;BR /&gt;192 run;&lt;/P&gt;
&lt;P&gt;NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).&lt;BR /&gt;190:9&lt;BR /&gt;NOTE: There were 1201 observations read from the data set WORK.ARI1617.&lt;BR /&gt;NOTE: The data set WORK.ARI1617_FORMAT has 1201 observations and 50 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.02 seconds&lt;BR /&gt;cpu time 0.03 seconds&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Feb 2022 15:56:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796305#M255508</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-02-15T15:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: Macro input didn't work?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796307#M255509</link>
      <description>&lt;P&gt;Since you did not supply example data, I have to make guesses.&lt;/P&gt;
&lt;P&gt;My guess is that you want to convert character variables to numeric. Since one cannot change the type of an existing variable, you have to create new ones and do the "rename-convert-drop" dance.&lt;/P&gt;
&lt;P&gt;You are alerted to the fact that you cannot change the type by this:&lt;/P&gt;
&lt;PRE&gt;NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).
190:9
&lt;/PRE&gt;
&lt;P&gt;This refers to&lt;/P&gt;
&lt;PRE&gt;190 Vars=input(Vars, best4.);
&lt;/PRE&gt;
&lt;P&gt;and if you count the columns in your original log (not the one that was mangled by you posting into the main window; we have &lt;U&gt;&lt;STRONG&gt;VERY OFTEN&lt;/STRONG&gt;&lt;/U&gt; told you now to use the code box opened with the &amp;lt;/&amp;gt; button so that the formatting is kept), you will find that the re-conversion to character happens when the result of the INPUT function (which is numeric) has to be converted to character to store it in the variable that is still character.&lt;/P&gt;
&lt;P&gt;So, your statement that the log shows that the conversion was done is in fact patently wrong.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Changing the type of a single variable is done like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data changed;
set unchanged (rename=(
  var = _var
));
var = input(_var,4.);
drop
  _var
;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;By expanding the RENAME= dataset option and the DROP statement, and adding additional assignment statements, you can do that for all of your variables; this can be done in a macro.&lt;/P&gt;
&lt;P&gt;One nice method to change a list of variables without a macro is to use a double transpose:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data wrong;
input id $ a $ b $ c $;
datalines;
A 2004 2005 2006
B 2005 2006 2007
;

proc transpose
  data=wrong
  out=long_wrong
;
by id;
var a b c; /* you only need to expand this statement for more variables */
run;

data long_right;
set long_wrong;
col = input(col1,4.);
run;

proc transpose
  data=long_right
  out=want (drop=_name_)
;
by id;
id _name_;
var col;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Feb 2022 16:25:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796307#M255509</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-02-15T16:25:46Z</dc:date>
    </item>
    <item>
      <title>Re: Macro input didn't work?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796309#M255510</link>
      <description>&lt;P&gt;Oh, I see what is going on, thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Despite the subject line of this thread "Macro input didn't work", this has nothing to do with macros (there are no macros in this code) and it has nothing to do with the usage of the macro variable.&amp;nbsp;&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/67134"&gt;@ybz12003&lt;/a&gt;&amp;nbsp;you should not jump to the conclusion that the problem is due to your macro variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In fact, the usual advice here is that you get the code to work without macro variables first, and then you add in macro variables as needed. Had you done that, you would have not had the problem with macro variables, and your code would work properly. Remember, if you don't have working code first, it will never work with macro variables.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Feb 2022 16:09:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796309#M255510</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-02-15T16:09:16Z</dc:date>
    </item>
    <item>
      <title>Re: Macro input didn't work?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796318#M255514</link>
      <description>&lt;P&gt;Thanks for all the great advise.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Feb 2022 16:22:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796318#M255514</guid>
      <dc:creator>ybz12003</dc:creator>
      <dc:date>2022-02-15T16:22:29Z</dc:date>
    </item>
    <item>
      <title>Re: Macro input didn't work?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796331#M255523</link>
      <description>I can't use the newvar names after formating the dataset, because I can't disguise which ones they are.  How to keep my old var names.</description>
      <pubDate>Tue, 15 Feb 2022 16:43:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796331#M255523</guid>
      <dc:creator>ybz12003</dc:creator>
      <dc:date>2022-02-15T16:43:22Z</dc:date>
    </item>
    <item>
      <title>Re: Macro input didn't work?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796348#M255533</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/67134"&gt;@ybz12003&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;I can't use the newvar names after formating the dataset, because I can't disguise which ones they are. How to keep my old var names.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
	select trim(name) into : FalseChalist separated by ' '  from ARI1617_falsecha;
	select cats('num_',name) into : FalseChalist1 separated by ' '  from ARI1617_falsecha;
quit;

%put &amp;amp;FalseChalist;

data ARI1617_a;
	set ARI1617;
	array vars $ &amp;amp;FalseChalist.;
    array numvars &amp;amp;FalseChalist1;
    do i=1 to dim(vars);
        numvars(i)=input(Vars(i), best4.);
    end;
    drop i;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Also, let's get the terminology correct, this does not have anything to do with formats. Formats are not the issue here. This is creating a new variable with a different variable type (numeric or text).&lt;/P&gt;</description>
      <pubDate>Tue, 15 Feb 2022 17:21:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796348#M255533</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-02-15T17:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: Macro input didn't work?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796351#M255536</link>
      <description>&lt;P&gt;It is a little confusing as to what the goal is here.&amp;nbsp; You claim you want to convert from CHAR to NUM.&amp;nbsp; But the code is using BEST.&amp;nbsp; That is the name of a FORMAT.&amp;nbsp; If you want to convert from character to numbers you need to use an INFORMAT.&amp;nbsp; Since the input() function does not care if the width used on the informat is larger than the length of the string being read just use 32. as the informat.&amp;nbsp; Or if the strings have thousands separators or dollar signs use COMMA32. informat.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You will have to make new variables as you cannot change the type of an existing variable.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql noprint ;
select nliteral(name)
     , nliteral(cats('__',name))
     , catx('=',nliteral(name), nliteral(cats('__',name))
  into :FalseChalist separated by ' '  
     , :templist separated by ' '
     , :renamelist separates by ' '
from ARI1617_falsecha
;
quit;

data ARI1617_format;
  set ARI1617(rename=(&amp;amp;renamelist));
  array good &amp;amp;falsechalist ;
  array bad &amp;amp;templist;
  do over good;
    good=input(left(bad),32.);
  end;
  drop &amp;amp;templist;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 15 Feb 2022 17:59:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796351#M255536</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-02-15T17:59:03Z</dc:date>
    </item>
    <item>
      <title>Re: Macro input didn't work?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796426#M255566</link>
      <description>&lt;P&gt;I'm sorry that I have difficulty digesting many suggestions in a short time.&amp;nbsp; I try to use the ones I understand and incorporate them into my program.&amp;nbsp; Still, thanks for all of your great advice.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Feb 2022 02:13:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796426#M255566</guid>
      <dc:creator>ybz12003</dc:creator>
      <dc:date>2022-02-16T02:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: Macro input didn't work?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796428#M255567</link>
      <description>&lt;P&gt;Thanks, Tom.&amp;nbsp; I use you as a reference, below is mine.&amp;nbsp; I added rename step in the next datastep.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
	select trim(name) into : FalseChalist separated by ' '  from ARI1617_falsecha;
	select cats('num_',name) into : FalseChalist1 separated by ' '  from ARI1617_falsecha;
quit;
%put &amp;amp;FalseChalist;
%put &amp;amp;FalseChalist1;

data ARI1617_format;
	set ARI1617;
    array vars $ &amp;amp;FalseChalist.;
    array numvars &amp;amp;FalseChalist1;
    do i=1 to dim(vars);
        numvars(i)=input(Vars(i),2.);
    end;
    drop i &amp;amp;FalseChalist.;
run;
proc contents data=ARI1617_format out=ARI1617formatContent; run;

data ARI1617formatUpdate;
	set ARI1617_format;
	array numvars &amp;amp;FalseChalist1.;
	array vars &amp;amp;FalseChalist.;
	do i=1 to dim(numvars);
		rename=vars[i]=numvars[i];
		format &amp;amp;FalseChalist. Best.;
	end;
	drop i &amp;amp;FalseChalist1; 
run;
proc contents data=ARI1617formatUpdate out=ARI1617updateCon; run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 16 Feb 2022 02:18:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796428#M255567</guid>
      <dc:creator>ybz12003</dc:creator>
      <dc:date>2022-02-16T02:18:05Z</dc:date>
    </item>
    <item>
      <title>Re: Macro input didn't work?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796431#M255569</link>
      <description>Yes.  You have OFTEN told me the rule, and I keep forgetting them if I don't use them frequently.  Sorry...</description>
      <pubDate>Wed, 16 Feb 2022 02:23:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796431#M255569</guid>
      <dc:creator>ybz12003</dc:creator>
      <dc:date>2022-02-16T02:23:14Z</dc:date>
    </item>
    <item>
      <title>Re: Macro input didn't work?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796432#M255570</link>
      <description>&lt;P&gt;This line makes no sense.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;		rename=vars[i]=numvars[i];&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You are creating a variable named RENAME that is going to be set to a boolean result.&amp;nbsp; So it will be set to 1 when the two values referenced by indexing into the two arrays are equal and zero otherwise.&amp;nbsp; You have it in a do loop so only the result of the final comparison will remain since it will overwrite the values stored into RENAME by the passes through the DO loop.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want RENAME a varaible you need to use RENAME statement instead. (Or the RENAME= dataset option).&lt;/P&gt;
&lt;P&gt;The syntax for the RENAME statement requires actual variable names.&amp;nbsp; Not array index references.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Feb 2022 02:24:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796432#M255570</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-02-16T02:24:08Z</dc:date>
    </item>
    <item>
      <title>Re: Macro input didn't work?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796438#M255573</link>
      <description>&lt;P&gt;Please read through earlier code carefully and consider the meaning of each line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-SPOILER&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2022-02-15 214810.jpg" style="width: 952px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/68506iB9E5EDBE9E77A2A3/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2022-02-15 214810.jpg" alt="Screenshot 2022-02-15 214810.jpg" /&gt;&lt;/span&gt;&lt;/LI-SPOILER&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Feb 2022 02:48:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796438#M255573</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-02-16T02:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: Macro input didn't work?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796890#M255764</link>
      <description>Hmm, I got it.  Thanks.</description>
      <pubDate>Thu, 17 Feb 2022 14:51:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-input-didn-t-work/m-p/796890#M255764</guid>
      <dc:creator>ybz12003</dc:creator>
      <dc:date>2022-02-17T14:51:01Z</dc:date>
    </item>
  </channel>
</rss>

