<?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: Delete Blank Rows in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Delete-Blank-Rows/m-p/573860#M162075</link>
    <description>&lt;P&gt;Sure thing &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Anytime.&lt;/P&gt;</description>
    <pubDate>Tue, 16 Jul 2019 14:47:42 GMT</pubDate>
    <dc:creator>PeterClemmensen</dc:creator>
    <dc:date>2019-07-16T14:47:42Z</dc:date>
    <item>
      <title>Delete Blank Rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-Blank-Rows/m-p/573852#M162070</link>
      <description>&lt;P&gt;I want to delete the rows that have empty columns for a certain range of columns (q7_16 - q7_505). The columns are not in numeric order. I don't want to write out each column because I have to do this with a much larger dataset next.&lt;/P&gt;&lt;P&gt;So, if columns q7_16, q7_17, q7_18, q7_19, q7_2, q7_2094, q7_504, and q7_505 are blank, then delete those rows.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Picture is attached to show the dataset.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data severity_lrd_7_v3b;
	set severity_lrd_7;
		where survey_desc = "V3B";
		if n(of q7_16-q7_505);
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;but then it adds every number from 16-505 which I do not want.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2019 14:37:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-Blank-Rows/m-p/573852#M162070</guid>
      <dc:creator>A_Halps</dc:creator>
      <dc:date>2019-07-16T14:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: Delete Blank Rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-Blank-Rows/m-p/573856#M162072</link>
      <description>&lt;P&gt;Provided that your variables of interest are side by side, you can do this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data severity_lrd_7_v3b;
	set severity_lrd_7;
		where survey_desc = "V3B";
		if n(of q7_16--q7_505);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 16 Jul 2019 14:43:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-Blank-Rows/m-p/573856#M162072</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-07-16T14:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: Delete Blank Rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-Blank-Rows/m-p/573858#M162073</link>
      <description>What an easy fix, thank you!!!</description>
      <pubDate>Tue, 16 Jul 2019 14:45:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-Blank-Rows/m-p/573858#M162073</guid>
      <dc:creator>A_Halps</dc:creator>
      <dc:date>2019-07-16T14:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: Delete Blank Rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-Blank-Rows/m-p/573860#M162075</link>
      <description>&lt;P&gt;Sure thing &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Anytime.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2019 14:47:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-Blank-Rows/m-p/573860#M162075</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-07-16T14:47:42Z</dc:date>
    </item>
  </channel>
</rss>

