<?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: Help making one value that was entered as -8 into missing for one variable. in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Help-making-one-value-that-was-entered-as-8-into-missing-for-one/m-p/842355#M36517</link>
    <description>&lt;P&gt;A few questions:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Why is your new variable a character one while the original is numeric?&lt;/LI&gt;&lt;LI&gt;What is the frequency of ci_2n being equal to -8 in your original dataset?&lt;/LI&gt;&lt;/UL&gt;</description>
    <pubDate>Thu, 03 Nov 2022 16:12:02 GMT</pubDate>
    <dc:creator>Anne_A</dc:creator>
    <dc:date>2022-11-03T16:12:02Z</dc:date>
    <item>
      <title>Help making one value that was entered as -8 into missing for one variable.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Help-making-one-value-that-was-entered-as-8-into-missing-for-one/m-p/842350#M36515</link>
      <description>&lt;P&gt;The variable ci_2n has a value that was entered as -8. This should be changed to be missing. Below is the code I've tried:&lt;/P&gt;&lt;P&gt;Data unmet.original5;&lt;BR /&gt;Set unmet.original4;&lt;BR /&gt;If ci_2n = -8 then ci_2n_fix = '.';&lt;BR /&gt;Run;&lt;/P&gt;&lt;P&gt;Proc freq data = unmet.original5;&lt;BR /&gt;Table ci_2n_fix;&lt;BR /&gt;Run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The table now shows all 637 observations as missing.&lt;/P&gt;&lt;P&gt;I don't know how to make the -8 vale as missing without making all of the observations as&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;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Nov 2022 16:03:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Help-making-one-value-that-was-entered-as-8-into-missing-for-one/m-p/842350#M36515</guid>
      <dc:creator>gtucke1</dc:creator>
      <dc:date>2022-11-03T16:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: Help making one value that was entered as -8 into missing for one variable.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Help-making-one-value-that-was-entered-as-8-into-missing-for-one/m-p/842354#M36516</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data unmet.original5;
Set unmet.original4;
If ci_2n = -8 then ci_2n_fix = .;
else ci_2n_fix = ci_2n;
Run;&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;or&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data unmet.original5;
Set unmet.original4;
If ci_2n = -8 then ci_2n = .;
Run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Nov 2022 16:22:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Help-making-one-value-that-was-entered-as-8-into-missing-for-one/m-p/842354#M36516</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-11-03T16:22:56Z</dc:date>
    </item>
    <item>
      <title>Re: Help making one value that was entered as -8 into missing for one variable.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Help-making-one-value-that-was-entered-as-8-into-missing-for-one/m-p/842355#M36517</link>
      <description>&lt;P&gt;A few questions:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Why is your new variable a character one while the original is numeric?&lt;/LI&gt;&lt;LI&gt;What is the frequency of ci_2n being equal to -8 in your original dataset?&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Thu, 03 Nov 2022 16:12:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Help-making-one-value-that-was-entered-as-8-into-missing-for-one/m-p/842355#M36517</guid>
      <dc:creator>Anne_A</dc:creator>
      <dc:date>2022-11-03T16:12:02Z</dc:date>
    </item>
  </channel>
</rss>

