<?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: Best way to map new variable or existing variable using the values of 2 or more variable in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840665#M41572</link>
    <description>&lt;P&gt;If you were dealing with a &lt;STRONG&gt;single variable&lt;/STRONG&gt; then a custom format would be one of the most efficient ways to deal with recoding or "mapping" values as you would not need to add a variable at all for most uses.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As soon as you go to two or more variables you don't have much choice. If the values are discrete then perhaps storing the value sets in another data set and then combining with that set, whether a data step Merge or Hash or SQL join might be the choice. But then you have one or more permanent data sets you need to make sure don't get lost or corrupted.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Caution: Using the construct of the same data set as input and output like below is dangerous as it completely replaces the source data set. Logic errors may result in loss of data or possibly worse minor unexpected value changes.&lt;/P&gt;
&lt;PRE&gt;Data Transactions;
set Transactions;&lt;/PRE&gt;
&lt;P&gt;Personally, when I have something like your admittedly limited example, I place the mapping code into the same step that READS the data.&lt;/P&gt;
&lt;P&gt;I also tend to create custom informats for discrete value variables like your Policy_category and Network_provider to through invalid data messages if a value other than the ones you expect to see, including unexpected missing values, appears in the source data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Those invalid data messages then become a clue that the mapping code may need to be updated to handle new values.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 25 Oct 2022 19:52:58 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2022-10-25T19:52:58Z</dc:date>
    <item>
      <title>Best way to map new variable or existing variable using the values of 2 or more variable</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840631#M41568</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have old sas programs where existing or new variable are mapped using the combined values of two or more variables.&lt;/P&gt;
&lt;P&gt;Most of the time, a select statement is used as below:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Transactions;
length TRANS $ 3;
   infile datalines delimiter=',';
   input Policy_category $ Network_Provider $;
   datalines;
R,20000
A,20000
A,10008
M,10008
R,10015
M,      
 ,10015
  , 
;

run;

Data Transactions;
set Transactions;
      SELECT;
             WHEN (Policy_Category = 'R') TRANS = 'CGN';
             WHEN (Policy_Category = 'A' and Network_Provider='20000') TRANS='AAA';
             WHEN (Policy_Category = 'A' and Network_Provider&amp;lt;&amp;gt;'20000') TRANS='BBB';
             OTHERWISE TRANS='CCC';
        END;

run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The problem that I see with this approach is that the mapping in imbedded into the SAS code making the maintenance hard to do.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What's the best way to do that task in SAS if we want to centralize the information.&lt;/P&gt;
&lt;P&gt;P.S:&amp;nbsp; &amp;nbsp;All the good ideas are welcome!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Oct 2022 17:54:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840631#M41568</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2022-10-25T17:54:43Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to map new variable or existing variable using the values of 2 or more variable</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840633#M41569</link>
      <description>&lt;P&gt;Obviously, it depends on multiple factors.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;How many mappings are there?&lt;/LI&gt;
&lt;LI&gt;Is the mapping done in multiple programs or just this one?&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Tue, 25 Oct 2022 17:57:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840633#M41569</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2022-10-25T17:57:30Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to map new variable or existing variable using the values of 2 or more variable</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840655#M41570</link>
      <description>&lt;P&gt;How many types of transformations are there?&amp;nbsp; Is there any pattern to them?&lt;/P&gt;
&lt;P&gt;If there is no pattern then code is probably the easiest way to record the transformation.&amp;nbsp; To make it reusable you might want to make a macro.&amp;nbsp; Then when the rules change you just publish a new version of the macro.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note your code is wrong.&amp;nbsp; You are trying to use the MAX operator ( &amp;lt;&amp;gt; ) with character values.&amp;nbsp; The MAX operator only works with numeric values.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Plus it looks like you probably meant to test for non equality.&amp;nbsp; Use the NE operator for that.&amp;nbsp; (Only in SQL does that strange less than and greater than symbol mean not equal).&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But in reality you don't need that part of the test anyway since you already captured the cases where it was equal with the previous WHEN statement.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;SELECT;
  WHEN (Policy_Category = 'R') TRANS = 'CGN';
  WHEN (Policy_Category = 'A' and Network_Provider='20000') TRANS='AAA';
  WHEN (Policy_Category = 'A') TRANS='BBB';
  OTHERWISE TRANS='CCC';
END;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 25 Oct 2022 18:48:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840655#M41570</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-10-25T18:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to map new variable or existing variable using the values of 2 or more variable</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840656#M41571</link>
      <description>As Peter mentioned, it really depends. You would need to go through the different selects and develop a system that makes sense for your programs. It could be as simple as having each condition in it's own columns but if you have nested OR conditions that could get complex.</description>
      <pubDate>Tue, 25 Oct 2022 18:56:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840656#M41571</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2022-10-25T18:56:45Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to map new variable or existing variable using the values of 2 or more variable</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840665#M41572</link>
      <description>&lt;P&gt;If you were dealing with a &lt;STRONG&gt;single variable&lt;/STRONG&gt; then a custom format would be one of the most efficient ways to deal with recoding or "mapping" values as you would not need to add a variable at all for most uses.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As soon as you go to two or more variables you don't have much choice. If the values are discrete then perhaps storing the value sets in another data set and then combining with that set, whether a data step Merge or Hash or SQL join might be the choice. But then you have one or more permanent data sets you need to make sure don't get lost or corrupted.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Caution: Using the construct of the same data set as input and output like below is dangerous as it completely replaces the source data set. Logic errors may result in loss of data or possibly worse minor unexpected value changes.&lt;/P&gt;
&lt;PRE&gt;Data Transactions;
set Transactions;&lt;/PRE&gt;
&lt;P&gt;Personally, when I have something like your admittedly limited example, I place the mapping code into the same step that READS the data.&lt;/P&gt;
&lt;P&gt;I also tend to create custom informats for discrete value variables like your Policy_category and Network_provider to through invalid data messages if a value other than the ones you expect to see, including unexpected missing values, appears in the source data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Those invalid data messages then become a clue that the mapping code may need to be updated to handle new values.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Oct 2022 19:52:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840665#M41572</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-10-25T19:52:58Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to map new variable or existing variable using the values of 2 or more variable</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840709#M41587</link>
      <description>&lt;LI-CODE lang="sas"&gt;SELECT;
  WHEN (Policy_Category = 'R') TRANS = 'CGN';
  WHEN (Policy_Category = 'A' and Network_Provider='20000') TRANS='AAA';
  WHEN (Policy_Category = 'A') and Network_Provider &amp;lt;&amp;gt; '20000') TRANS='BBB';
  OTHERWISE TRANS='CCC';
END;&lt;/LI-CODE&gt;
&lt;P&gt;Here's the correct code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My questions are: is there a way to centralize the information ? Is there a procedure to do that kind of mapping or better way to do it ?&lt;/P&gt;</description>
      <pubDate>Tue, 25 Oct 2022 22:26:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840709#M41587</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2022-10-25T22:26:30Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to map new variable or existing variable using the values of 2 or more variable</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840713#M41588</link>
      <description>No, only processes you can design. &lt;BR /&gt;For example, you could create a lookup file with the conditions, either each in a column or line and then build the code dynamically. But that depends on the complexity of the conditions. For something as shown, very doable. For more complex conditions, very much a pain.</description>
      <pubDate>Tue, 25 Oct 2022 22:41:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840713#M41588</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2022-10-25T22:41:01Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to map new variable or existing variable using the values of 2 or more variable</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840721#M41590</link>
      <description>&lt;P&gt;You are still trying to use the MAX operator with character values.&lt;/P&gt;
&lt;P&gt;That CANNOT work.&lt;/P&gt;
&lt;PRE&gt;61   data test;
62     string ='Hello';
63     if string &amp;lt;&amp;gt; 'Hello' then put 'What??';
NOTE: The "&amp;lt;&amp;gt;" operator is interpreted as "MAX".
64   run;

NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column).
      63:13
NOTE: Invalid numeric data, 'Hello' , at line 63 column 13.
string=Hello _ERROR_=1 _N_=1
NOTE: The data set WORK.TEST has 1 observations and 1 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.01 seconds

&lt;/PRE&gt;
&lt;P&gt;Just remove &lt;STRONG&gt;&amp;lt;&amp;gt;&lt;/STRONG&gt; and &lt;STRONG&gt;&amp;gt;&amp;lt;&lt;/STRONG&gt; from the set of operators you use in code (&lt;STRONG&gt;any code&lt;/STRONG&gt;) as they are confusing.&amp;nbsp; Not sure who thought that the first looks like it means either max or not equal.&amp;nbsp; And if it does then what logic suggests that the second one means something different?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to test is two value are not equal then tell the computer that is what you want to do.&amp;nbsp; There are many options that do not involve using a symbol that has no clear meaning.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Network_Provider ne '20000'
not (Network_Provider = '20000')
not (Network_Provider eq '20000')
&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;
&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>Wed, 26 Oct 2022 01:40:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840721#M41590</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-10-26T01:40:05Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to map new variable or existing variable using the values of 2 or more variable</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840936#M41596</link>
      <description>They are many mappings, and that, in many SAS programs.  So the maitenance is hard to do.   It is why I was asking if there is a better way to do it othterwise using the select statement and to centralize those mappings.</description>
      <pubDate>Wed, 26 Oct 2022 15:17:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840936#M41596</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2022-10-26T15:17:25Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to map new variable or existing variable using the values of 2 or more variable</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840937#M41597</link>
      <description>Thank you very much for this information.  I will keep that in mind  .</description>
      <pubDate>Wed, 26 Oct 2022 15:18:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840937#M41597</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2022-10-26T15:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to map new variable or existing variable using the values of 2 or more variable</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840946#M41598</link>
      <description>&lt;TABLE border="1" width="100%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%"&gt;Outcome Variable&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;Outcome Value&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;Criteria&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%"&gt;Trans&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;CGM&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;Policy_Category = 'R'&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%"&gt;Trans&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;AAA&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;&lt;CODE class=" language-sas"&gt;Policy_Category = 'A' and Network_Provider='20000'&lt;/CODE&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%"&gt;Trans&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;BBB&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;&lt;CODE class=" language-sas"&gt;Policy_Category = 'A' and Network_Provider ne '20000'&lt;/CODE&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%"&gt;Trans&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;CCC&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;OTHER&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The most basic form to track/generate these SELECT statements.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2022 15:38:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840946#M41598</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2022-10-26T15:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to map new variable or existing variable using the values of 2 or more variable</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840949#M41599</link>
      <description>&lt;P&gt;Given that your "lookup" conditions do not all use the same number of variables, it may be messy to centralize as&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;suggested.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, you might benefit simply from nesting conditions, which could simplify maintenance.&amp;nbsp; For instance, the code you present could be recoded as:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;select ;
  WHEN (Policy_Category = 'R') TRANS = 'CGN';
  WHEN (Policy_Category = 'A') do;
     select(netword_provider);
       when ('20000') TRANS='AAA';
       otherwise TRANS='BBB';
     end;
  end;
  OTHERWISE TRANS='CCC';
end;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This will be best, of course, if the various conditions have a nice nesting structure.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2022 15:59:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840949#M41599</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2022-10-26T15:59:09Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to map new variable or existing variable using the values of 2 or more variable</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840988#M41600</link>
      <description>Hello Reeza, Thanks for the table.  I will use it in my supporting documentation.&lt;BR /&gt;Regarding the SAS code, I was asking the community just to see it could exist a nice way to do that task.&lt;BR /&gt;It seems that the best approach is still the select statement.&lt;BR /&gt;&lt;BR /&gt;What I could do , it's to create a macro function, one per outcome variable, then keep all those into a subfolder named mapping  and then call these macro when needed.  At least, all the information will be hosted at the same place.&lt;BR /&gt;&lt;BR /&gt;Thank all of you for your time and help.</description>
      <pubDate>Wed, 26 Oct 2022 18:13:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840988#M41600</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2022-10-26T18:13:47Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to map new variable or existing variable using the values of 2 or more variable</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840995#M41601</link>
      <description>Given your stated problem, I agree this is probably a good approach. It makes it reusable so you aren't having multiple select in different places and are updating code in one place. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 26 Oct 2022 18:29:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Best-way-to-map-new-variable-or-existing-variable-using-the/m-p/840995#M41601</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2022-10-26T18:29:26Z</dc:date>
    </item>
  </channel>
</rss>

