<?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: I want to change all the 0 of my SAS multivariables tables by &amp;quot;ns&amp;quot; character. in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/I-want-to-change-all-the-0-of-my-SAS-multivariables-tables-by/m-p/693650#M211549</link>
    <description>&lt;P&gt;Shortest post ever!&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":face_savoring_food:"&gt;😋&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 23 Oct 2020 04:02:11 GMT</pubDate>
    <dc:creator>ChrisNZ</dc:creator>
    <dc:date>2020-10-23T04:02:11Z</dc:date>
    <item>
      <title>I want to change all the 0 of my SAS multivariables tables by "ns" character.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-want-to-change-all-the-0-of-my-SAS-multivariables-tables-by/m-p/693630#M211538</link>
      <description />
      <pubDate>Thu, 22 Oct 2020 23:38:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-want-to-change-all-the-0-of-my-SAS-multivariables-tables-by/m-p/693630#M211538</guid>
      <dc:creator>tavil</dc:creator>
      <dc:date>2020-10-22T23:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: I want to change all the 0 of my SAS multivariables tables by "ns" character.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-want-to-change-all-the-0-of-my-SAS-multivariables-tables-by/m-p/693631#M211539</link>
      <description>Ah.  I see.  But perhaps you could give us just a little bit more information on your data and exactly what it is that you are looking for. A sample of data and chart or table of the desired results would be most apt.&lt;BR /&gt;&lt;BR /&gt;Jim</description>
      <pubDate>Fri, 23 Oct 2020 00:04:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-want-to-change-all-the-0-of-my-SAS-multivariables-tables-by/m-p/693631#M211539</guid>
      <dc:creator>jimbarbour</dc:creator>
      <dc:date>2020-10-23T00:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: I want to change all the 0 of my SAS multivariables tables by "ns" character.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-want-to-change-all-the-0-of-my-SAS-multivariables-tables-by/m-p/693645#M211544</link>
      <description>&lt;P&gt;Define a format and associate it with your variables. You only need to specify the 'special' values, other values will adopt the default format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
value ns
0 = "ns";
run;

data test;
array x{5};
do i = -5 to -1;
    do j = 1 to 5;
        x{j} = i + j;
        end;
    output;
    end;
format x1-x5 ns.;
drop i j;
run;

proc print data=test noobs; run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 132px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/50920i87CF0E64CB76F292/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 03:10:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-want-to-change-all-the-0-of-my-SAS-multivariables-tables-by/m-p/693645#M211544</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2020-10-23T03:10:51Z</dc:date>
    </item>
    <item>
      <title>Re: I want to change all the 0 of my SAS multivariables tables by "ns" character.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/I-want-to-change-all-the-0-of-my-SAS-multivariables-tables-by/m-p/693650#M211549</link>
      <description>&lt;P&gt;Shortest post ever!&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":face_savoring_food:"&gt;😋&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 04:02:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/I-want-to-change-all-the-0-of-my-SAS-multivariables-tables-by/m-p/693650#M211549</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2020-10-23T04:02:11Z</dc:date>
    </item>
  </channel>
</rss>

