<?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: Giving a Variable with a Numeric Value a Descriptive Label in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Giving-a-Variable-with-a-Numeric-Value-a-Descriptive-Label/m-p/816744#M34360</link>
    <description>&lt;P&gt;&lt;STRONG&gt;You need to provide your code as text, not as images.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You created a format you never used it. You use a format using a FORMAT statement.&lt;/P&gt;
&lt;P&gt;For more information on formats read this paper&amp;nbsp;&lt;A href="https://support.sas.com/resources/papers/proceedings/proceedings/sugi30/001-30.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings/proceedings/sugi30/001-30.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc format;
value age_cat
low - 12 = 'Pre-Teen'
13 - 16 = 'Teen'
16 - high = 'Young Adult';
run;

proc freq data=sashelp.class;
table age;
&lt;FONT size="4" color="#0000FF"&gt;&lt;STRONG&gt;format age age_cat.;&lt;/STRONG&gt;&lt;/FONT&gt;
run;&lt;/PRE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/426997"&gt;@SAS_Novice22&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thank you to provide more clarity. I would like the proc print tables to show the new labels, with the code I use above here is what the data still looks like:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SAS_Novice22_0-1654545120953.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/72027i290DCB74F2A4C7E6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SAS_Novice22_0-1654545120953.png" alt="SAS_Novice22_0-1654545120953.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I would like the following labels to be applied instead of the numeric numbers. The text format has been included in the original post.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SAS_Novice22_1-1654545165498.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/72028i67F3D36F478DADED/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SAS_Novice22_1-1654545165498.png" alt="SAS_Novice22_1-1654545165498.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Here is the log I get:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SAS_Novice22_2-1654545346570.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/72029iFDE2C270D37ACCB1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SAS_Novice22_2-1654545346570.png" alt="SAS_Novice22_2-1654545346570.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;T.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 06 Jun 2022 20:02:36 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2022-06-06T20:02:36Z</dc:date>
    <item>
      <title>Giving a Variable with a Numeric Value a Descriptive Label</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Giving-a-Variable-with-a-Numeric-Value-a-Descriptive-Label/m-p/816732#M34355</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am very new to SAS and would appreciate any assistance. I would like to take the new variable I generated and give labels to the numeric codes to create easy interpretation.&lt;/P&gt;&lt;P&gt;Here is what the data looks like:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SAS_Novice22_0-1654543729669.png" style="width: 67px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/72026i0BF85342622ADEA6/image-dimensions/67x190?v=v2" width="67" height="190" role="button" title="SAS_Novice22_0-1654543729669.png" alt="SAS_Novice22_0-1654543729669.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Here is my code (which is not working):&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;PROC FORMAT;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;VALUE RACE 1="ASIAN"&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2="BLACK"&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3="PACIFIC"&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;4="WHITE"&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;5="OTHER";&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; RUN;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;Thank you in advance for any help you can provide.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;T.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jun 2022 19:37:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Giving-a-Variable-with-a-Numeric-Value-a-Descriptive-Label/m-p/816732#M34355</guid>
      <dc:creator>SAS_Novice22</dc:creator>
      <dc:date>2022-06-06T19:37:11Z</dc:date>
    </item>
    <item>
      <title>Re: Giving a Variable with a Numeric Value a Descriptive Label</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Giving-a-Variable-with-a-Numeric-Value-a-Descriptive-Label/m-p/816733#M34356</link>
      <description>&lt;P&gt;Your posted code looks fine for creating a format named RACE to decode those 5 values into text.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What code did you use to tell SAS to use that format with your existing variable?&lt;/P&gt;
&lt;P&gt;Please show the code that did not work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jun 2022 19:44:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Giving-a-Variable-with-a-Numeric-Value-a-Descriptive-Label/m-p/816733#M34356</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-06-06T19:44:03Z</dc:date>
    </item>
    <item>
      <title>Re: Giving a Variable with a Numeric Value a Descriptive Label</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Giving-a-Variable-with-a-Numeric-Value-a-Descriptive-Label/m-p/816734#M34357</link>
      <description>&lt;P&gt;When you say "it is not working" and provide no other details, we are left in the dark. Please explain WHAT is not working, and how you know it is not working. Provide information. And show us your code.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jun 2022 19:44:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Giving-a-Variable-with-a-Numeric-Value-a-Descriptive-Label/m-p/816734#M34357</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-06-06T19:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: Giving a Variable with a Numeric Value a Descriptive Label</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Giving-a-Variable-with-a-Numeric-Value-a-Descriptive-Label/m-p/816742#M34358</link>
      <description>&lt;P&gt;Thank you to provide more clarity. I would like the proc print tables to show the new labels, with the code I use above here is what the data still looks like:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SAS_Novice22_0-1654545120953.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/72027i290DCB74F2A4C7E6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SAS_Novice22_0-1654545120953.png" alt="SAS_Novice22_0-1654545120953.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I would like the following labels to be applied instead of the numeric numbers. The text format has been included in the original post.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SAS_Novice22_1-1654545165498.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/72028i67F3D36F478DADED/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SAS_Novice22_1-1654545165498.png" alt="SAS_Novice22_1-1654545165498.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Here is the log I get:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SAS_Novice22_2-1654545346570.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/72029iFDE2C270D37ACCB1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SAS_Novice22_2-1654545346570.png" alt="SAS_Novice22_2-1654545346570.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;T.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jun 2022 19:55:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Giving-a-Variable-with-a-Numeric-Value-a-Descriptive-Label/m-p/816742#M34358</guid>
      <dc:creator>SAS_Novice22</dc:creator>
      <dc:date>2022-06-06T19:55:59Z</dc:date>
    </item>
    <item>
      <title>Re: Giving a Variable with a Numeric Value a Descriptive Label</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Giving-a-Variable-with-a-Numeric-Value-a-Descriptive-Label/m-p/816743#M34359</link>
      <description>Replied to my original post, please let me know if that provides the needed clarification.</description>
      <pubDate>Mon, 06 Jun 2022 19:56:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Giving-a-Variable-with-a-Numeric-Value-a-Descriptive-Label/m-p/816743#M34359</guid>
      <dc:creator>SAS_Novice22</dc:creator>
      <dc:date>2022-06-06T19:56:34Z</dc:date>
    </item>
    <item>
      <title>Re: Giving a Variable with a Numeric Value a Descriptive Label</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Giving-a-Variable-with-a-Numeric-Value-a-Descriptive-Label/m-p/816744#M34360</link>
      <description>&lt;P&gt;&lt;STRONG&gt;You need to provide your code as text, not as images.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You created a format you never used it. You use a format using a FORMAT statement.&lt;/P&gt;
&lt;P&gt;For more information on formats read this paper&amp;nbsp;&lt;A href="https://support.sas.com/resources/papers/proceedings/proceedings/sugi30/001-30.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings/proceedings/sugi30/001-30.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc format;
value age_cat
low - 12 = 'Pre-Teen'
13 - 16 = 'Teen'
16 - high = 'Young Adult';
run;

proc freq data=sashelp.class;
table age;
&lt;FONT size="4" color="#0000FF"&gt;&lt;STRONG&gt;format age age_cat.;&lt;/STRONG&gt;&lt;/FONT&gt;
run;&lt;/PRE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/426997"&gt;@SAS_Novice22&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thank you to provide more clarity. I would like the proc print tables to show the new labels, with the code I use above here is what the data still looks like:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SAS_Novice22_0-1654545120953.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/72027i290DCB74F2A4C7E6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SAS_Novice22_0-1654545120953.png" alt="SAS_Novice22_0-1654545120953.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I would like the following labels to be applied instead of the numeric numbers. The text format has been included in the original post.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SAS_Novice22_1-1654545165498.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/72028i67F3D36F478DADED/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SAS_Novice22_1-1654545165498.png" alt="SAS_Novice22_1-1654545165498.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Here is the log I get:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SAS_Novice22_2-1654545346570.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/72029iFDE2C270D37ACCB1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SAS_Novice22_2-1654545346570.png" alt="SAS_Novice22_2-1654545346570.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;T.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jun 2022 20:02:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Giving-a-Variable-with-a-Numeric-Value-a-Descriptive-Label/m-p/816744#M34360</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2022-06-06T20:02:36Z</dc:date>
    </item>
    <item>
      <title>Re: Giving a Variable with a Numeric Value a Descriptive Label</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Giving-a-Variable-with-a-Numeric-Value-a-Descriptive-Label/m-p/816745#M34361</link>
      <description>&lt;P&gt;Somewhere you need a FORMAT statement to tell SAS that you want to use the format to display the variable.&lt;/P&gt;
&lt;P&gt;Either in the step that creates the dataset or the step that produces the report.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;format race race. ;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please post text as text and not photographs. Especially code.&amp;nbsp; Use the Insert SAS Code button to get a pop-up window to paste the code so the forum doesn't treat the code as paragraphs.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jun 2022 20:02:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Giving-a-Variable-with-a-Numeric-Value-a-Descriptive-Label/m-p/816745#M34361</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-06-06T20:02:46Z</dc:date>
    </item>
    <item>
      <title>Re: Giving a Variable with a Numeric Value a Descriptive Label</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Giving-a-Variable-with-a-Numeric-Value-a-Descriptive-Label/m-p/816746#M34362</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You have created the format.&lt;BR /&gt;But did you make a "link" between the VARIABLE named RACE and the FORMAT named RACE?&lt;/P&gt;
&lt;P&gt;Here's how you can do it :&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data work.have;
race=1; output;
race=2; output;
race=3; output;
race=4; output;
race=5; output;
run;

PROC FORMAT;
VALUE RACE 1="ASIAN"
           2="BLACK"
           3="PACIFIC"
           4="WHITE"
           5="OTHER";
RUN;

PROC DATASETS LIBRARY=WORK NoList memtype=DATA;
 modify have;
  format race race.;
run;

PROC PRINT NOOBS; RUN;
/* end of program */&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;As the format is by default stored in WORK.FORMATS you must recreate it in every SAS session again.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jun 2022 20:09:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Giving-a-Variable-with-a-Numeric-Value-a-Descriptive-Label/m-p/816746#M34362</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2022-06-06T20:09:20Z</dc:date>
    </item>
    <item>
      <title>Re: Giving a Variable with a Numeric Value a Descriptive Label</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Giving-a-Variable-with-a-Numeric-Value-a-Descriptive-Label/m-p/816748#M34363</link>
      <description>Thank you again for the help!</description>
      <pubDate>Mon, 06 Jun 2022 20:14:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Giving-a-Variable-with-a-Numeric-Value-a-Descriptive-Label/m-p/816748#M34363</guid>
      <dc:creator>SAS_Novice22</dc:creator>
      <dc:date>2022-06-06T20:14:52Z</dc:date>
    </item>
    <item>
      <title>Re: Giving a Variable with a Numeric Value a Descriptive Label</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Giving-a-Variable-with-a-Numeric-Value-a-Descriptive-Label/m-p/816749#M34364</link>
      <description>Thank you Tom, that makes sense I will figure out how to use the insert SAS code to get the pop-up window to paste the code for the forum for next time,&lt;BR /&gt;Thank you again for the solution.&lt;BR /&gt;T.</description>
      <pubDate>Mon, 06 Jun 2022 20:15:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Giving-a-Variable-with-a-Numeric-Value-a-Descriptive-Label/m-p/816749#M34364</guid>
      <dc:creator>SAS_Novice22</dc:creator>
      <dc:date>2022-06-06T20:15:59Z</dc:date>
    </item>
    <item>
      <title>Re: Giving a Variable with a Numeric Value a Descriptive Label</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Giving-a-Variable-with-a-Numeric-Value-a-Descriptive-Label/m-p/816750#M34365</link>
      <description>Very helpful, Koen. Thank you, that is the solution to my problem. Thank you for the great explanation and the information.&lt;BR /&gt;T.</description>
      <pubDate>Mon, 06 Jun 2022 20:19:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Giving-a-Variable-with-a-Numeric-Value-a-Descriptive-Label/m-p/816750#M34365</guid>
      <dc:creator>SAS_Novice22</dc:creator>
      <dc:date>2022-06-06T20:19:17Z</dc:date>
    </item>
  </channel>
</rss>

