<?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: Update all cell in table based on conditions in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Update-all-cell-in-table-based-on-conditions/m-p/123873#M34052</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Scoot&lt;/P&gt;&lt;P&gt;Thank you very much&lt;/P&gt;&lt;P&gt;Working like a charm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Aug 2013 10:53:51 GMT</pubDate>
    <dc:creator>bob021</dc:creator>
    <dc:date>2013-08-28T10:53:51Z</dc:date>
    <item>
      <title>Update all cell in table based on conditions</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Update-all-cell-in-table-based-on-conditions/m-p/123870#M34049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;How to update all cell in table based on value in cell no matters in which column they are?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data work;&lt;/P&gt;&lt;P&gt;input week pert sum tar west;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;datalines;&lt;/P&gt;&lt;P&gt;18 200&amp;nbsp; 8400 . 100&lt;/P&gt;&lt;P&gt;19 . 6970 6720 .&lt;/P&gt;&lt;P&gt;20 200 . 9766&amp;nbsp; .&lt;/P&gt;&lt;P&gt;21 .&amp;nbsp; 8400 . 390&lt;/P&gt;&lt;P&gt;22 100 . 8400 .&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to update (&lt;STRONG&gt;.&lt;/STRONG&gt;) with (&lt;STRONG&gt;0&lt;/STRONG&gt;) in whole table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Aug 2013 09:42:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Update-all-cell-in-table-based-on-conditions/m-p/123870#M34049</guid>
      <dc:creator>bob021</dc:creator>
      <dc:date>2013-08-28T09:42:10Z</dc:date>
    </item>
    <item>
      <title>Re: Update all cell in table based on conditions</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Update-all-cell-in-table-based-on-conditions/m-p/123871#M34050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DATA WANT;&lt;/P&gt;&lt;P&gt;SET HAVE;&lt;/P&gt;&lt;P&gt;ARRAY NVARS _NUMERIC_;&lt;/P&gt;&lt;P&gt;DO I = 1 TO DIM(NVARS);&lt;/P&gt;&lt;P&gt;NVARS{I} = TRANSLATE(NVARS{I},0,.);&lt;/P&gt;&lt;P&gt;END;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Aug 2013 09:48:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Update-all-cell-in-table-based-on-conditions/m-p/123871#M34050</guid>
      <dc:creator>Scott_Mitchell</dc:creator>
      <dc:date>2013-08-28T09:48:04Z</dc:date>
    </item>
    <item>
      <title>Re: Update all cell in table based on conditions</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Update-all-cell-in-table-based-on-conditions/m-p/123872#M34051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you only want to change the presentation of the missing value, you could use the missing = option:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;options missing='0';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt;input week pert sum tar west;&lt;/P&gt;&lt;P&gt;datalines;&lt;/P&gt;&lt;P&gt;18 200&amp;nbsp; 8400 . 100&lt;/P&gt;&lt;P&gt;19 . 6970 6720 .&lt;/P&gt;&lt;P&gt;20 200 . 9766&amp;nbsp; .&lt;/P&gt;&lt;P&gt;21 .&amp;nbsp; 8400 . 390&lt;/P&gt;&lt;P&gt;22 100 . 8400 .&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Aug 2013 09:52:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Update-all-cell-in-table-based-on-conditions/m-p/123872#M34051</guid>
      <dc:creator>Scott_Mitchell</dc:creator>
      <dc:date>2013-08-28T09:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: Update all cell in table based on conditions</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Update-all-cell-in-table-based-on-conditions/m-p/123873#M34052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Scoot&lt;/P&gt;&lt;P&gt;Thank you very much&lt;/P&gt;&lt;P&gt;Working like a charm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Aug 2013 10:53:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Update-all-cell-in-table-based-on-conditions/m-p/123873#M34052</guid>
      <dc:creator>bob021</dc:creator>
      <dc:date>2013-08-28T10:53:51Z</dc:date>
    </item>
    <item>
      <title>Re: Update all cell in table based on conditions</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Update-all-cell-in-table-based-on-conditions/m-p/123874#M34053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glad I could help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Aug 2013 11:36:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Update-all-cell-in-table-based-on-conditions/m-p/123874#M34053</guid>
      <dc:creator>Scott_Mitchell</dc:creator>
      <dc:date>2013-08-28T11:36:51Z</dc:date>
    </item>
  </channel>
</rss>

