<?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 problems creating macro variables with call symput in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/problems-creating-macro-variables-with-call-symput/m-p/17067#M2436</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; The SYMPUTX routine will also eliminate the numeric to character conversion note as it does not expect the second argument to be character as does SYMPUT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Feb 2012 19:57:09 GMT</pubDate>
    <dc:creator>ArtC</dc:creator>
    <dc:date>2012-02-28T19:57:09Z</dc:date>
    <item>
      <title>problems creating macro variables with call symput</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problems-creating-macro-variables-with-call-symput/m-p/17057#M2426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I'm trying to import lots of text files and am having problems creating the macro variables which will allow me to do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've been able to assign the file names to variables so when I run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %put _user_ ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I get the following;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; filenm1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; text_file_01326&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; filenm2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; text_file_14568&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; filenm3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; text_file_08554&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; filenm4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; text_file_99954&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As these files have different schemas, I'm trying to create a second macro variable for each file identifying the schema.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The schema identifier is on the first line of the text file. I've isolated this record and am trying to use call symput to assign a value to a macro variable as such.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;PRE&gt;&lt;/PRE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The macro loop works and the if then else block works but no macro variable gets assigned.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I remove the strip function from the call symput, I get an error in the log stating;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ERROR: Symbolic variable name Filetp&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1 must contain only letters, digits, and underscores.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This indicates that the index function is correctly identifying the existance of the text in the var1 string and it's the call symput which is not functioning as I want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've read SUGI papers which suggest that the variables can in some instances be created locally but I don't think that this what's happening here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've also tried assigning numbers and SAS data set variables as macro values but this also hasn't worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help with this would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Paul.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2012 15:24:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problems-creating-macro-variables-with-call-symput/m-p/17057#M2426</guid>
      <dc:creator>FatCaptain</dc:creator>
      <dc:date>2012-02-28T15:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: problems creating macro variables with call symput</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problems-creating-macro-variables-with-call-symput/m-p/17058#M2427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Paul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One problem lies in the first parameter to CALL SYMPUT.&amp;nbsp; Within the context of a DATA step, &amp;amp;i is a number where the software is looking for characters.&amp;nbsp; Change this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;strip(&amp;amp;i)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead, while this would be acceptable:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"&amp;amp;i"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It would be easier to just use a first parameter that looks like this (and use double quotes, not single):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"filetp&amp;amp;i"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This streamlines the situation, but doesn't really fix it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, it is true in your examples that the macro variables created by CALL SYMPUT will be %LOCAL, not %GLOBAL.&amp;nbsp; If you need to reference them once the macro has finished executing, add this statement as the first statement in the %DO loop:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%global filetp&amp;amp;i;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2012 15:34:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problems-creating-macro-variables-with-call-symput/m-p/17058#M2427</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2012-02-28T15:34:42Z</dc:date>
    </item>
    <item>
      <title>problems creating macro variables with call symput</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problems-creating-macro-variables-with-call-symput/m-p/17059#M2428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;According to the test code I just ran your macro variables ARE being created, but only locally.&amp;nbsp; If you need them to be global, why not just add&amp;nbsp; %global statements creating them as global before you create them?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data ob_2_1;&lt;/P&gt;&lt;P&gt;&amp;nbsp; var1='xx DMMT ss';&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;data ob_2_2;&lt;/P&gt;&lt;P&gt;&amp;nbsp; var1='xx DDDD ss';&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;data ob_2_3;&lt;/P&gt;&lt;P&gt;&amp;nbsp; var1='xx DMLN ss';&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;%macro ftmac ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; %do i = 1 %to 3 ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; data _null_ ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set&amp;nbsp; ob_2_&amp;amp;i ; /*this data set contains only the first record from the text file*/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if index(var1,'DMMT') ge 1 then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; call symput('filetp'||strip(&amp;amp;i),'DM1') ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else if index(var1,'DMLN') ge 1 then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; call symput('filetp'||strip(&amp;amp;i),'DM2') ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; run ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; %put _user_ ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; %end ;&lt;/P&gt;&lt;P&gt;%mend ftmac ;&lt;/P&gt;&lt;P&gt;%ftmac&lt;/P&gt;&lt;P&gt;%put &amp;amp;filetp1. ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2012 15:41:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problems-creating-macro-variables-with-call-symput/m-p/17059#M2428</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-02-28T15:41:21Z</dc:date>
    </item>
    <item>
      <title>problems creating macro variables with call symput</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problems-creating-macro-variables-with-call-symput/m-p/17060#M2429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Astounding,&lt;A&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for this. I've altered the code as you suggest but still no luck.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My original code generated this note in the SAS log which no longer appears.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NOTE: Numeric values have been converted to character values at the places given by:&lt;/P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (Line):(Column).&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1:1 1:1 1:1&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;﻿&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2012 15:47:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problems-creating-macro-variables-with-call-symput/m-p/17060#M2429</guid>
      <dc:creator>FatCaptain</dc:creator>
      <dc:date>2012-02-28T15:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: problems creating macro variables with call symput</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problems-creating-macro-variables-with-call-symput/m-p/17061#M2430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Art,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OK, here's a headscratcher for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you noticed, the macro variables are %LOCAL if you run the program as is.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, try adding this statement before running the macro:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%global i;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You'll find that the macro variables are now all %GLOBAL, including those generated by CALL SYMPUT.&amp;nbsp; The rules are that CALL SYMPUT will not force the creation of a %LOCAL symbol table.&amp;nbsp; When &amp;amp;I already exists in the %GLOBAL table, there is no local table needed and CALL SYMPUT is forced to add to the %GLOBAL table.&amp;nbsp; It's a case where you can look at the macro in its entirety, but can't tell ahead of time whether CALL SYMPUT will use the %GLOBAL or %LOCAL table. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2012 15:50:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problems-creating-macro-variables-with-call-symput/m-p/17061#M2430</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2012-02-28T15:50:16Z</dc:date>
    </item>
    <item>
      <title>Re: problems creating macro variables with call symput</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problems-creating-macro-variables-with-call-symput/m-p/17062#M2431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The following worked for me:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data ob_2_1;&lt;/P&gt;&lt;P&gt;&amp;nbsp; var1='xx DMMT ss';&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;data ob_2_2;&lt;/P&gt;&lt;P&gt;&amp;nbsp; var1='xx DDDD ss';&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;data ob_2_3;&lt;/P&gt;&lt;P&gt;&amp;nbsp; var1='xx DMLN ss';&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;%macro ftmac ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; %do i = 1 %to 3 ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; data _null_ ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set&amp;nbsp; ob_2_&amp;amp;i ; /*this data set contains only the first record from the text file*/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if index(var1,'DMMT') ge 1 then do;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %global %sysfunc(cats(filetp,&amp;amp;i.));&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; call symput('filetp'||strip(&amp;amp;i),'DM1') ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else if index(var1,'DMLN') ge 1 then do;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %global %sysfunc(cats(filetp,&amp;amp;i.));&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; call symput('filetp'||strip(&amp;amp;i),'DM2') ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; run ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; %put _user_ ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; %end ;&lt;/P&gt;&lt;P&gt;%mend ftmac ;&lt;/P&gt;&lt;P&gt;%ftmac&lt;/P&gt;&lt;P&gt;%put &amp;amp;filetp1. ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2012 15:55:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problems-creating-macro-variables-with-call-symput/m-p/17062#M2431</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-02-28T15:55:30Z</dc:date>
    </item>
    <item>
      <title>Re: problems creating macro variables with call symput</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problems-creating-macro-variables-with-call-symput/m-p/17063#M2432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've edited my answer a couple of times.&amp;nbsp; Sorry about that.&amp;nbsp; Please use the latest suggestions, and re-post what your program now looks like. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2012 15:56:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problems-creating-macro-variables-with-call-symput/m-p/17063#M2432</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2012-02-28T15:56:26Z</dc:date>
    </item>
    <item>
      <title>Re: problems creating macro variables with call symput</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problems-creating-macro-variables-with-call-symput/m-p/17064#M2433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Astounding: Agreed, unless you force the issue as I did in my previous post&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2012 16:00:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problems-creating-macro-variables-with-call-symput/m-p/17064#M2433</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-02-28T16:00:15Z</dc:date>
    </item>
    <item>
      <title>problems creating macro variables with call symput</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problems-creating-macro-variables-with-call-symput/m-p/17065#M2434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thank you both for your help with this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Paul.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2012 16:01:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problems-creating-macro-variables-with-call-symput/m-p/17065#M2434</guid>
      <dc:creator>FatCaptain</dc:creator>
      <dc:date>2012-02-28T16:01:55Z</dc:date>
    </item>
    <item>
      <title>problems creating macro variables with call symput</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problems-creating-macro-variables-with-call-symput/m-p/17066#M2435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Instead of using %global and call symput you can do call symputx with the 'G' modifier.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;&lt;P&gt;Arthur Tabachneck wrote:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; data _null_ ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="text-decoration: line-through;"&gt;%global %sysfunc(cats(filetp,&amp;amp;i.));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; call symput&lt;SPAN style="text-decoration: underline;"&gt;x&lt;/SPAN&gt;('filetp'||strip(&amp;amp;i),'DM1'&lt;SPAN style="text-decoration: underline;"&gt;,'G'&lt;/SPAN&gt;) ;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2012 17:30:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problems-creating-macro-variables-with-call-symput/m-p/17066#M2435</guid>
      <dc:creator>FriedEgg</dc:creator>
      <dc:date>2012-02-28T17:30:26Z</dc:date>
    </item>
    <item>
      <title>problems creating macro variables with call symput</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problems-creating-macro-variables-with-call-symput/m-p/17067#M2436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; The SYMPUTX routine will also eliminate the numeric to character conversion note as it does not expect the second argument to be character as does SYMPUT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2012 19:57:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problems-creating-macro-variables-with-call-symput/m-p/17067#M2436</guid>
      <dc:creator>ArtC</dc:creator>
      <dc:date>2012-02-28T19:57:09Z</dc:date>
    </item>
    <item>
      <title>problems creating macro variables with call symput</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problems-creating-macro-variables-with-call-symput/m-p/17068#M2437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FriedEgg: Nice addition .. very much appreciated!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2012 22:57:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problems-creating-macro-variables-with-call-symput/m-p/17068#M2437</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-02-28T22:57:42Z</dc:date>
    </item>
  </channel>
</rss>

