<?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: how to remove values in a row in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/how-to-remove-values-in-a-row/m-p/686489#M208330</link>
    <description>&lt;P&gt;Clarification: I said delete the variables, not delete the values.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
    set have;
    drop c0-c4;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 24 Sep 2020 19:24:14 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2020-09-24T19:24:14Z</dc:date>
    <item>
      <title>how to remove values in a row</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-remove-values-in-a-row/m-p/686479#M208323</link>
      <description>&lt;P&gt;Hi everyone!&lt;/P&gt;
&lt;P&gt;I have a SAS question about how to remove some values in a row and only keep the first column and the last column which is the total.&amp;nbsp; Thanks so much!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Amy0223_0-1600974921164.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/49762i0B03BCAAF2D5B4F2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Amy0223_0-1600974921164.png" alt="Amy0223_0-1600974921164.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 19:15:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-remove-values-in-a-row/m-p/686479#M208323</guid>
      <dc:creator>Amy0223</dc:creator>
      <dc:date>2020-09-24T19:15:43Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove values in a row</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-remove-values-in-a-row/m-p/686482#M208326</link>
      <description>&lt;P&gt;The easiest thing to do is simply delete variables c0 through c4.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 19:19:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-remove-values-in-a-row/m-p/686482#M208326</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-09-24T19:19:02Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove values in a row</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-remove-values-in-a-row/m-p/686487#M208329</link>
      <description>Thanks! How to program it to delete those values?</description>
      <pubDate>Thu, 24 Sep 2020 19:22:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-remove-values-in-a-row/m-p/686487#M208329</guid>
      <dc:creator>Amy0223</dc:creator>
      <dc:date>2020-09-24T19:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove values in a row</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-remove-values-in-a-row/m-p/686489#M208330</link>
      <description>&lt;P&gt;Clarification: I said delete the variables, not delete the values.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
    set have;
    drop c0-c4;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 24 Sep 2020 19:24:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-remove-values-in-a-row/m-p/686489#M208330</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-09-24T19:24:14Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove values in a row</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-remove-values-in-a-row/m-p/686494#M208333</link>
      <description>Is there a way to keep the variables but only delete c0-c4 values?</description>
      <pubDate>Thu, 24 Sep 2020 19:29:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-remove-values-in-a-row/m-p/686494#M208333</guid>
      <dc:creator>Amy0223</dc:creator>
      <dc:date>2020-09-24T19:29:27Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove values in a row</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-remove-values-in-a-row/m-p/686497#M208334</link>
      <description>&lt;P&gt;You would have to have a missing value which is a dot, as these variables are numeric.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In a SAS data step, use&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;call missing(c0,c1,c2,c3,c4);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 24 Sep 2020 19:33:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-remove-values-in-a-row/m-p/686497#M208334</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-09-24T19:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove values in a row</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-remove-values-in-a-row/m-p/686518#M208341</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;You would have to have a missing value which is a dot, as these variables are numeric.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In a SAS data step, use&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;call missing(c0,c1,c2,c3,c4);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Or for a little added flair&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;call missing(of c0-c4);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 24 Sep 2020 20:41:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-remove-values-in-a-row/m-p/686518#M208341</guid>
      <dc:creator>CurtisMackWSIPP</dc:creator>
      <dc:date>2020-09-24T20:41:33Z</dc:date>
    </item>
  </channel>
</rss>

