<?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 Force zeros into multiple fields in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Force-zeros-into-multiple-fields/m-p/781558#M249067</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Using the sample dataset below, what is the best way to make zone1,zone2,zone3 and zone4 to all be zero if the location field is absent? if location field is present, then zone fields should remain as is. I'm trying to do this without writing a long if-then statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE style="border-collapse: collapse; width: 336pt;" border="0" width="448" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD width="64" height="19" class="xl78" style="height: 14.4pt; width: 48pt;"&gt;Patient&lt;/TD&gt;
&lt;TD width="64" class="xl75" style="width: 48pt;"&gt;Visit&lt;/TD&gt;
&lt;TD width="64" class="xl76" style="width: 48pt;"&gt;Location&lt;/TD&gt;
&lt;TD width="64" class="xl75" style="width: 48pt;"&gt;Zone1&lt;/TD&gt;
&lt;TD width="64" class="xl76" style="width: 48pt;"&gt;Zone2&lt;/TD&gt;
&lt;TD width="64" class="xl75" style="width: 48pt;"&gt;Zone3&lt;/TD&gt;
&lt;TD width="64" class="xl77" style="width: 48pt;"&gt;Zone4&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" class="xl79" style="height: 14.4pt;"&gt;1&lt;/TD&gt;
&lt;TD class="xl67"&gt;Week1&lt;/TD&gt;
&lt;TD class="xl66"&gt;Absent&lt;/TD&gt;
&lt;TD class="xl67"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl66"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl67"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl72"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" class="xl80" style="height: 14.4pt;"&gt;1&lt;/TD&gt;
&lt;TD class="xl69"&gt;Week2&lt;/TD&gt;
&lt;TD class="xl68"&gt;Absent&lt;/TD&gt;
&lt;TD class="xl69"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl68"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl69"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl73"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" class="xl81" style="height: 14.4pt;"&gt;1&lt;/TD&gt;
&lt;TD class="xl71"&gt;Week3&lt;/TD&gt;
&lt;TD class="xl70"&gt;Present&lt;/TD&gt;
&lt;TD class="xl71"&gt;1&lt;/TD&gt;
&lt;TD class="xl70"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl71"&gt;0.5&lt;/TD&gt;
&lt;TD class="xl74"&gt;1.5&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" class="xl80" style="height: 14.4pt;"&gt;2&lt;/TD&gt;
&lt;TD class="xl69"&gt;Week1&lt;/TD&gt;
&lt;TD class="xl68"&gt;Absent&lt;/TD&gt;
&lt;TD class="xl69"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl68"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl69"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl73"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" class="xl80" style="height: 14.4pt;"&gt;2&lt;/TD&gt;
&lt;TD class="xl69"&gt;Week2&lt;/TD&gt;
&lt;TD class="xl68"&gt;Absent&lt;/TD&gt;
&lt;TD class="xl69"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl68"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl69"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl73"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" class="xl80" style="height: 14.4pt;"&gt;2&lt;/TD&gt;
&lt;TD class="xl69"&gt;Week3&lt;/TD&gt;
&lt;TD class="xl68"&gt;Present&lt;/TD&gt;
&lt;TD class="xl69"&gt;2&lt;/TD&gt;
&lt;TD class="xl68"&gt;1&lt;/TD&gt;
&lt;TD class="xl69"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl73"&gt;0.3&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" class="xl79" style="height: 14.4pt;"&gt;3&lt;/TD&gt;
&lt;TD class="xl67"&gt;Week1&lt;/TD&gt;
&lt;TD class="xl66"&gt;Present&lt;/TD&gt;
&lt;TD class="xl67"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl66"&gt;1.5&lt;/TD&gt;
&lt;TD class="xl67"&gt;0.9&lt;/TD&gt;
&lt;TD class="xl72"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" class="xl80" style="height: 14.4pt;"&gt;3&lt;/TD&gt;
&lt;TD class="xl69"&gt;Week2&lt;/TD&gt;
&lt;TD class="xl68"&gt;Absent&lt;/TD&gt;
&lt;TD class="xl69"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl68"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl69"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl73"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" class="xl81" style="height: 14.4pt;"&gt;3&lt;/TD&gt;
&lt;TD class="xl71"&gt;Week3&lt;/TD&gt;
&lt;TD class="xl70"&gt;Present&lt;/TD&gt;
&lt;TD class="xl71"&gt;3&lt;/TD&gt;
&lt;TD class="xl70"&gt;0.8&lt;/TD&gt;
&lt;TD class="xl71"&gt;0&lt;/TD&gt;
&lt;TD class="xl74"&gt;0&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" class="xl80" style="height: 14.4pt;"&gt;4&lt;/TD&gt;
&lt;TD class="xl69"&gt;Week1&lt;/TD&gt;
&lt;TD class="xl68"&gt;Present&lt;/TD&gt;
&lt;TD class="xl69"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl68"&gt;0.9&lt;/TD&gt;
&lt;TD class="xl69"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl73"&gt;0.6&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" class="xl80" style="height: 14.4pt;"&gt;4&lt;/TD&gt;
&lt;TD class="xl69"&gt;Week2&lt;/TD&gt;
&lt;TD class="xl68"&gt;Present&lt;/TD&gt;
&lt;TD class="xl69"&gt;3&lt;/TD&gt;
&lt;TD class="xl68"&gt;1.2&lt;/TD&gt;
&lt;TD class="xl69"&gt;2&lt;/TD&gt;
&lt;TD class="xl73"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" class="xl81" style="height: 14.4pt;"&gt;4&lt;/TD&gt;
&lt;TD class="xl71"&gt;Week3&lt;/TD&gt;
&lt;TD class="xl70"&gt;Present&lt;/TD&gt;
&lt;TD class="xl71"&gt;3&lt;/TD&gt;
&lt;TD class="xl70"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl71"&gt;2&lt;/TD&gt;
&lt;TD class="xl74"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
    <pubDate>Sun, 21 Nov 2021 16:56:24 GMT</pubDate>
    <dc:creator>Etoo12121</dc:creator>
    <dc:date>2021-11-21T16:56:24Z</dc:date>
    <item>
      <title>Force zeros into multiple fields</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Force-zeros-into-multiple-fields/m-p/781558#M249067</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Using the sample dataset below, what is the best way to make zone1,zone2,zone3 and zone4 to all be zero if the location field is absent? if location field is present, then zone fields should remain as is. I'm trying to do this without writing a long if-then statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE style="border-collapse: collapse; width: 336pt;" border="0" width="448" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD width="64" height="19" class="xl78" style="height: 14.4pt; width: 48pt;"&gt;Patient&lt;/TD&gt;
&lt;TD width="64" class="xl75" style="width: 48pt;"&gt;Visit&lt;/TD&gt;
&lt;TD width="64" class="xl76" style="width: 48pt;"&gt;Location&lt;/TD&gt;
&lt;TD width="64" class="xl75" style="width: 48pt;"&gt;Zone1&lt;/TD&gt;
&lt;TD width="64" class="xl76" style="width: 48pt;"&gt;Zone2&lt;/TD&gt;
&lt;TD width="64" class="xl75" style="width: 48pt;"&gt;Zone3&lt;/TD&gt;
&lt;TD width="64" class="xl77" style="width: 48pt;"&gt;Zone4&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" class="xl79" style="height: 14.4pt;"&gt;1&lt;/TD&gt;
&lt;TD class="xl67"&gt;Week1&lt;/TD&gt;
&lt;TD class="xl66"&gt;Absent&lt;/TD&gt;
&lt;TD class="xl67"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl66"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl67"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl72"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" class="xl80" style="height: 14.4pt;"&gt;1&lt;/TD&gt;
&lt;TD class="xl69"&gt;Week2&lt;/TD&gt;
&lt;TD class="xl68"&gt;Absent&lt;/TD&gt;
&lt;TD class="xl69"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl68"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl69"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl73"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" class="xl81" style="height: 14.4pt;"&gt;1&lt;/TD&gt;
&lt;TD class="xl71"&gt;Week3&lt;/TD&gt;
&lt;TD class="xl70"&gt;Present&lt;/TD&gt;
&lt;TD class="xl71"&gt;1&lt;/TD&gt;
&lt;TD class="xl70"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl71"&gt;0.5&lt;/TD&gt;
&lt;TD class="xl74"&gt;1.5&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" class="xl80" style="height: 14.4pt;"&gt;2&lt;/TD&gt;
&lt;TD class="xl69"&gt;Week1&lt;/TD&gt;
&lt;TD class="xl68"&gt;Absent&lt;/TD&gt;
&lt;TD class="xl69"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl68"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl69"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl73"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" class="xl80" style="height: 14.4pt;"&gt;2&lt;/TD&gt;
&lt;TD class="xl69"&gt;Week2&lt;/TD&gt;
&lt;TD class="xl68"&gt;Absent&lt;/TD&gt;
&lt;TD class="xl69"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl68"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl69"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl73"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" class="xl80" style="height: 14.4pt;"&gt;2&lt;/TD&gt;
&lt;TD class="xl69"&gt;Week3&lt;/TD&gt;
&lt;TD class="xl68"&gt;Present&lt;/TD&gt;
&lt;TD class="xl69"&gt;2&lt;/TD&gt;
&lt;TD class="xl68"&gt;1&lt;/TD&gt;
&lt;TD class="xl69"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl73"&gt;0.3&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" class="xl79" style="height: 14.4pt;"&gt;3&lt;/TD&gt;
&lt;TD class="xl67"&gt;Week1&lt;/TD&gt;
&lt;TD class="xl66"&gt;Present&lt;/TD&gt;
&lt;TD class="xl67"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl66"&gt;1.5&lt;/TD&gt;
&lt;TD class="xl67"&gt;0.9&lt;/TD&gt;
&lt;TD class="xl72"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" class="xl80" style="height: 14.4pt;"&gt;3&lt;/TD&gt;
&lt;TD class="xl69"&gt;Week2&lt;/TD&gt;
&lt;TD class="xl68"&gt;Absent&lt;/TD&gt;
&lt;TD class="xl69"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl68"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl69"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl73"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" class="xl81" style="height: 14.4pt;"&gt;3&lt;/TD&gt;
&lt;TD class="xl71"&gt;Week3&lt;/TD&gt;
&lt;TD class="xl70"&gt;Present&lt;/TD&gt;
&lt;TD class="xl71"&gt;3&lt;/TD&gt;
&lt;TD class="xl70"&gt;0.8&lt;/TD&gt;
&lt;TD class="xl71"&gt;0&lt;/TD&gt;
&lt;TD class="xl74"&gt;0&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" class="xl80" style="height: 14.4pt;"&gt;4&lt;/TD&gt;
&lt;TD class="xl69"&gt;Week1&lt;/TD&gt;
&lt;TD class="xl68"&gt;Present&lt;/TD&gt;
&lt;TD class="xl69"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl68"&gt;0.9&lt;/TD&gt;
&lt;TD class="xl69"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl73"&gt;0.6&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" class="xl80" style="height: 14.4pt;"&gt;4&lt;/TD&gt;
&lt;TD class="xl69"&gt;Week2&lt;/TD&gt;
&lt;TD class="xl68"&gt;Present&lt;/TD&gt;
&lt;TD class="xl69"&gt;3&lt;/TD&gt;
&lt;TD class="xl68"&gt;1.2&lt;/TD&gt;
&lt;TD class="xl69"&gt;2&lt;/TD&gt;
&lt;TD class="xl73"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.4pt;"&gt;
&lt;TD height="19" class="xl81" style="height: 14.4pt;"&gt;4&lt;/TD&gt;
&lt;TD class="xl71"&gt;Week3&lt;/TD&gt;
&lt;TD class="xl70"&gt;Present&lt;/TD&gt;
&lt;TD class="xl71"&gt;3&lt;/TD&gt;
&lt;TD class="xl70"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="xl71"&gt;2&lt;/TD&gt;
&lt;TD class="xl74"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Sun, 21 Nov 2021 16:56:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Force-zeros-into-multiple-fields/m-p/781558#M249067</guid>
      <dc:creator>Etoo12121</dc:creator>
      <dc:date>2021-11-21T16:56:24Z</dc:date>
    </item>
    <item>
      <title>Re: Force zeros into multiple fields</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Force-zeros-into-multiple-fields/m-p/781563#M249068</link>
      <description>&lt;P&gt;When you have to do the same thing to multiple variables on a single observation then the typical tool would be an ARRAY.&lt;/P&gt;
&lt;P&gt;Perhaps something like:&lt;/P&gt;
&lt;PRE&gt;data want;
   set have;
   array z (*) zone1 - zone4 ;
   if location = 'Absent' then do i=1 to dim(z);
       z[i] = 0;
   end;&lt;BR /&gt;   drop i;
run;&lt;/PRE&gt;
&lt;P&gt;Array statement creates a short cut way to allow accessing related variables. The Z is the name of the array and cannot be an existing variable, the (*) says that the size will be based on the list of variables provided and the zone1-zone4 is the list and expects there to be other variables named zone2 and zone3, sequentially numbered.&lt;/P&gt;
&lt;P&gt;The Dim function returns how many elements are in the array so the loop executes once for each variable (in this case), setting each value to 0.&lt;/P&gt;</description>
      <pubDate>Sun, 21 Nov 2021 18:11:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Force-zeros-into-multiple-fields/m-p/781563#M249068</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-11-21T18:11:23Z</dc:date>
    </item>
    <item>
      <title>Re: Force zeros into multiple fields</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Force-zeros-into-multiple-fields/m-p/781596#M249078</link>
      <description>&lt;P&gt;For so few variables just code it and keep the code simple.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data WANT;
  set HAVE;
  if LOCATION = 'Absent' then do;
    ZONE1=0; ZONE2=0; ZONE3=0; ZONE4=0; 
  end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 21 Nov 2021 22:44:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Force-zeros-into-multiple-fields/m-p/781596#M249078</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2021-11-21T22:44:43Z</dc:date>
    </item>
    <item>
      <title>Re: Force zeros into multiple fields</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Force-zeros-into-multiple-fields/m-p/781669#M249107</link>
      <description>&lt;P&gt;Do you need the zeros in the dataset or in a report? If the later is the case, you could just use option missing="0", before creating the report.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Nov 2021 07:12:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Force-zeros-into-multiple-fields/m-p/781669#M249107</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2021-11-22T07:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: Force zeros into multiple fields</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Force-zeros-into-multiple-fields/m-p/781728#M249144</link>
      <description>Thank you. Arrays are perfect for my situation</description>
      <pubDate>Mon, 22 Nov 2021 14:51:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Force-zeros-into-multiple-fields/m-p/781728#M249144</guid>
      <dc:creator>Etoo12121</dc:creator>
      <dc:date>2021-11-22T14:51:40Z</dc:date>
    </item>
    <item>
      <title>Re: Force zeros into multiple fields</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Force-zeros-into-multiple-fields/m-p/781729#M249145</link>
      <description>this works as well but unfortunately, I have more variables than the 4 zones I listed in the sample. I'll keep this in my back pocket. Thank you</description>
      <pubDate>Mon, 22 Nov 2021 14:52:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Force-zeros-into-multiple-fields/m-p/781729#M249145</guid>
      <dc:creator>Etoo12121</dc:creator>
      <dc:date>2021-11-22T14:52:28Z</dc:date>
    </item>
    <item>
      <title>Re: Force zeros into multiple fields</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Force-zeros-into-multiple-fields/m-p/781731#M249146</link>
      <description>I needed them in the dataset</description>
      <pubDate>Mon, 22 Nov 2021 14:52:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Force-zeros-into-multiple-fields/m-p/781731#M249146</guid>
      <dc:creator>Etoo12121</dc:creator>
      <dc:date>2021-11-22T14:52:43Z</dc:date>
    </item>
  </channel>
</rss>

