<?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: Adding 0 if the user did not apply for leave in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Adding-0-if-the-user-did-not-apply-for-leave/m-p/758993#M239752</link>
    <description>&lt;P&gt;What have you tried?&lt;/P&gt;
&lt;P&gt;Is leave_days = 1 for all obs in your real data?&lt;/P&gt;
&lt;P&gt;Why is calender_month not a formatted sas-date?&lt;/P&gt;
&lt;P&gt;Which months do expect to see in want? Are minimum and maximum taken from the data?&lt;/P&gt;</description>
    <pubDate>Tue, 03 Aug 2021 10:42:31 GMT</pubDate>
    <dc:creator>andreas_lds</dc:creator>
    <dc:date>2021-08-03T10:42:31Z</dc:date>
    <item>
      <title>Adding 0 if the user did not apply for leave</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-0-if-the-user-did-not-apply-for-leave/m-p/758989#M239749</link>
      <description>&lt;P&gt;Hi , I need help in summing up leave_days monthly for each user, and if the user did not take for leave on a particular calender_month, 0 value should display from the leave_days column corresponding to the calender_month which they did not take leave&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note that if user did not take leave, there will be no record on the &lt;STRONG&gt;leave&lt;/STRONG&gt; table and if for example user took 2 days&amp;nbsp; leave on the same calender_month, then 2 separate records for the same calender_month with will appear in the &lt;STRONG&gt;leave&lt;/STRONG&gt; table.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;STRONG&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Data Have&lt;/STRONG&gt;&lt;/P&gt;
&lt;LI-CODE lang="sas"&gt;data users;
  input users $50.;
  datalines;
Andrew Lup
Mike Mora
Farren Seb
;

data leave;
  input calender_month leave_days username $50.;
  datalines;
202101 1  Andrew Lup
202101 1  Andrew Lup
202102 1  Andrew Lup
202107 1  Andrew Lup
202101 1  Mike Mora
202101 1  Mike Mora
202101 1  Mike Mora
202107 1  Mike Mora
202107 1  Mike Mora
;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;data want&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;calender_month&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;username&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; leave_days&lt;/P&gt;
&lt;P&gt;202101&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Andrew Lup&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2&lt;/P&gt;
&lt;P&gt;202102&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Andrew Lup&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&lt;/P&gt;
&lt;P&gt;202103&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; Andrew Lup&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0&lt;/P&gt;
&lt;P&gt;202104&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Andrew Lup&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0&lt;/P&gt;
&lt;P&gt;202105&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Andrew Lup&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0&lt;/P&gt;
&lt;P&gt;202106&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Andrew Lup&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0&lt;/P&gt;
&lt;P&gt;202107&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Andrew Lup&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&lt;/P&gt;
&lt;P&gt;202101&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Mike Mora&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 3&lt;/P&gt;
&lt;P&gt;202102&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Mike Mora&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0&lt;/P&gt;
&lt;P&gt;202103&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Mike Mora&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0&lt;/P&gt;
&lt;P&gt;202104&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Mike Mora&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0&lt;/P&gt;
&lt;P&gt;202105&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Mike Mora&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0&lt;/P&gt;
&lt;P&gt;202106&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Mike Mora&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0&lt;/P&gt;
&lt;P&gt;202107&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Mike Mora&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2&lt;/P&gt;
&lt;P&gt;202101&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Farren Seb&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0&lt;/P&gt;
&lt;P&gt;202102&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Farren Seb&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0&lt;/P&gt;
&lt;P&gt;202103&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Farren Seb&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0&lt;/P&gt;
&lt;P&gt;202104&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Farren Seb&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0&lt;/P&gt;
&lt;P&gt;202105&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Farren Seb&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0&lt;/P&gt;
&lt;P&gt;202106&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Farren Seb&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0&lt;/P&gt;
&lt;P&gt;202107&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Farren Seb&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Aug 2021 10:12:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-0-if-the-user-did-not-apply-for-leave/m-p/758989#M239749</guid>
      <dc:creator>Solly7</dc:creator>
      <dc:date>2021-08-03T10:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: Adding 0 if the user did not apply for leave</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-0-if-the-user-did-not-apply-for-leave/m-p/758993#M239752</link>
      <description>&lt;P&gt;What have you tried?&lt;/P&gt;
&lt;P&gt;Is leave_days = 1 for all obs in your real data?&lt;/P&gt;
&lt;P&gt;Why is calender_month not a formatted sas-date?&lt;/P&gt;
&lt;P&gt;Which months do expect to see in want? Are minimum and maximum taken from the data?&lt;/P&gt;</description>
      <pubDate>Tue, 03 Aug 2021 10:42:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-0-if-the-user-did-not-apply-for-leave/m-p/758993#M239752</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2021-08-03T10:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: Adding 0 if the user did not apply for leave</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-0-if-the-user-did-not-apply-for-leave/m-p/758994#M239753</link>
      <description>Hi,&lt;BR /&gt;thanks for your reply, please see below answers to your questions&lt;BR /&gt;&lt;BR /&gt;What have you tried? I have tried to use coalesce function with sum but did not get desired output as stated on my data want&lt;BR /&gt;Is leave_days = 1 for all obs in your real data? YES it is&lt;BR /&gt;Which months do expect to see in want? Are minimum and maximum taken from the data? Im working only on data from 202101 to 202112.&lt;BR /&gt;</description>
      <pubDate>Tue, 03 Aug 2021 10:50:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-0-if-the-user-did-not-apply-for-leave/m-p/758994#M239753</guid>
      <dc:creator>Solly7</dc:creator>
      <dc:date>2021-08-03T10:50:33Z</dc:date>
    </item>
    <item>
      <title>Re: Adding 0 if the user did not apply for leave</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-0-if-the-user-did-not-apply-for-leave/m-p/758996#M239754</link>
      <description>&lt;P&gt;First of all, &lt;STRONG&gt;NEVER&lt;/STRONG&gt; store a date value like this. NEVER.&lt;/P&gt;
&lt;P&gt;Always store date and time related values as such in SAS (counts of days or seconds, starting at 1960-01-01, or midnight for pure times).&lt;/P&gt;
&lt;P&gt;So your dataset leave has to look like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data leave;
  input calender_month :yymmn6. leave_days username &amp;amp;:$50.;
  format calender_month yymmn6.;
  datalines;
202101 1  Andrew Lup
202101 1  Andrew Lup
202102 1  Andrew Lup
202107 1  Andrew Lup
202101 1  Mike Mora
202101 1  Mike Mora
202101 1  Mike Mora
202107 1  Mike Mora
202107 1  Mike Mora
;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Next, create a dataset that has all months for all users:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let start=%sysfunc(inputn(20210101,yymmdd8.));
%let end=%sysfunc(inputn(20210731,yymmdd8.));

data all_months;
set users;
format calender_month yymmn6.;
calender_month = &amp;amp;start.;
do while (calender_month le &amp;amp;end.);
  output;
  calender_month = intnx('month',calender_month,1,"b");
end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Then, join that, and use COALESCE:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
create table want as
  select
    t1.users as username,
    t1.calender_month,
    coalesce(sum(t2.leave_days),0) as leave_days
  from all_months t1
  left join leave t2
  on t1.users = t2.username and t1.calender_month = t2.calender_month
  group by t1.users, t1.calender_month
 ;
 quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Edit: changed CASE to COALESCE&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Aug 2021 11:14:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-0-if-the-user-did-not-apply-for-leave/m-p/758996#M239754</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-08-03T11:14:12Z</dc:date>
    </item>
    <item>
      <title>Re: Adding 0 if the user did not apply for leave</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-0-if-the-user-did-not-apply-for-leave/m-p/759011#M239765</link>
      <description>&lt;P&gt;proc summary could be used to, all you need are two formats: one containing all users, the other containing all months you want to see in the result. Building the format for the names is easy:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data work.UserFmt;
   set users(rename=(users = start));
   
   length fmtname $ 32 label $ 50;
   retain fmtname '$users';

   label = start;
run;

proc format cntlin=work.UserFmt;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;For the month-dataset, i assume that calender_month has been fixed, so that it is a sas date:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data work.MonthFmt;   
   length 
      FmtName $ 32 
      start label 8
   ;

   retain FmtName 'MonthFmt';  
   format start label yymmn6.; /* just for better readability */

   start = '01Jan2021'd;

   do while (start &amp;lt;= '01Jul2021'd);
      label = Start;
      output;
      start = intnx('month', start, 1, 'b');
   end;
run;

proc format cntlin=work.MonthFmt;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Counting days without using leave_days&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc summary data=work.leave completetypes nway;   
   class username calender_month / preloadfmt;
   format username $users. calender_month MonthFmt.;
   output out=work.want(drop=_type_ rename=(_freq_=leave_days));
run;

proc datasets library= work nolist;
   modify want;
      format calender_month yymmn6.;
quit;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Well, a lot more code than the solution suggested by &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;, so most likely just a show room for proc summary and formats &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Aug 2021 12:59:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-0-if-the-user-did-not-apply-for-leave/m-p/759011#M239765</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2021-08-03T12:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: Adding 0 if the user did not apply for leave</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-0-if-the-user-did-not-apply-for-leave/m-p/760839#M240645</link>
      <description>Thanks a lot Kurt..always learning a lot from you</description>
      <pubDate>Wed, 11 Aug 2021 07:13:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-0-if-the-user-did-not-apply-for-leave/m-p/760839#M240645</guid>
      <dc:creator>Solly7</dc:creator>
      <dc:date>2021-08-11T07:13:05Z</dc:date>
    </item>
    <item>
      <title>Re: Adding 0 if the user did not apply for leave</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-0-if-the-user-did-not-apply-for-leave/m-p/760841#M240646</link>
      <description>thank you</description>
      <pubDate>Wed, 11 Aug 2021 07:13:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-0-if-the-user-did-not-apply-for-leave/m-p/760841#M240646</guid>
      <dc:creator>Solly7</dc:creator>
      <dc:date>2021-08-11T07:13:39Z</dc:date>
    </item>
  </channel>
</rss>

