<?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 Closure Rate using Set Analysis where Closed Date between MonthStart(Opened Date) and MonthEnd(Opened Date) in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Closure-Rate-using-Set-Analysis-where-Closed-Date-between/m-p/2079619#M88567</link>
    <description>&lt;P&gt;Trying to calculate closure rate of tickets Closed in the same month they were Opened.&amp;nbsp; My Dimension is [Opened Month-Year]&lt;/P&gt;
&lt;P&gt;This does not work:&lt;/P&gt;
&lt;P&gt;=Count({&amp;lt;[Status Code]={'C', 'N'}, [Closed Date] = {"&amp;gt;=$(=MonthStart([Opened Month-Year]))&amp;lt;=$(=MonthEnd([Opened Month-Year]))"} &amp;gt;} Distinct [Ticket Nbr])/Count( Distinct [Ticket Nbr])&lt;/P&gt;
&lt;P&gt;This only produces correct results for May-2023.&amp;nbsp; I need calculation for all Opened month periods.&lt;/P&gt;
&lt;P&gt;=Count({&amp;lt;[Status Code]={'C', 'N'}, [Closed Date]={"&amp;gt;=05/01/2023&amp;lt;=05/31/2023"} &amp;gt;} Distinct [Ticket Nbr])/Count( Distinct [Ticket Nbr])&lt;/P&gt;</description>
    <pubDate>Sat, 03 Jun 2023 02:28:19 GMT</pubDate>
    <dc:creator>msshawn3019</dc:creator>
    <dc:date>2023-06-03T02:28:19Z</dc:date>
    <item>
      <title>Closure Rate using Set Analysis where Closed Date between MonthStart(Opened Date) and MonthEnd(Opened Date)</title>
      <link>https://community.qlik.com/t5/App-Development/Closure-Rate-using-Set-Analysis-where-Closed-Date-between/m-p/2079619#M88567</link>
      <description>&lt;P&gt;Trying to calculate closure rate of tickets Closed in the same month they were Opened.&amp;nbsp; My Dimension is [Opened Month-Year]&lt;/P&gt;
&lt;P&gt;This does not work:&lt;/P&gt;
&lt;P&gt;=Count({&amp;lt;[Status Code]={'C', 'N'}, [Closed Date] = {"&amp;gt;=$(=MonthStart([Opened Month-Year]))&amp;lt;=$(=MonthEnd([Opened Month-Year]))"} &amp;gt;} Distinct [Ticket Nbr])/Count( Distinct [Ticket Nbr])&lt;/P&gt;
&lt;P&gt;This only produces correct results for May-2023.&amp;nbsp; I need calculation for all Opened month periods.&lt;/P&gt;
&lt;P&gt;=Count({&amp;lt;[Status Code]={'C', 'N'}, [Closed Date]={"&amp;gt;=05/01/2023&amp;lt;=05/31/2023"} &amp;gt;} Distinct [Ticket Nbr])/Count( Distinct [Ticket Nbr])&lt;/P&gt;</description>
      <pubDate>Sat, 03 Jun 2023 02:28:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Closure-Rate-using-Set-Analysis-where-Closed-Date-between/m-p/2079619#M88567</guid>
      <dc:creator>msshawn3019</dc:creator>
      <dc:date>2023-06-03T02:28:19Z</dc:date>
    </item>
    <item>
      <title>Re: Closure Rate using Set Analysis where Closed Date between MonthStart(Opened Date) and MonthEnd(Opened Date)</title>
      <link>https://community.qlik.com/t5/App-Development/Closure-Rate-using-Set-Analysis-where-Closed-Date-between/m-p/2079629#M88568</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/138327"&gt;@msshawn3019&lt;/a&gt;&amp;nbsp; Could you please provide us sample data that would help us understand further and help you with a solution.&lt;/P&gt;</description>
      <pubDate>Sat, 03 Jun 2023 06:04:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Closure-Rate-using-Set-Analysis-where-Closed-Date-between/m-p/2079629#M88568</guid>
      <dc:creator>sidhiq91</dc:creator>
      <dc:date>2023-06-03T06:04:09Z</dc:date>
    </item>
    <item>
      <title>Re: Closure Rate using Set Analysis where Closed Date between MonthStart(Opened Date) and MonthEnd(Opened Date)</title>
      <link>https://community.qlik.com/t5/App-Development/Closure-Rate-using-Set-Analysis-where-Closed-Date-between/m-p/2079706#M88571</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/138327"&gt;@msshawn3019&lt;/a&gt;&amp;nbsp; try below&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;=Count({&amp;lt;[Status Code]={'C', 'N'},[Ticket Nbr]={"= [Closed Date] &amp;gt;=MonthStart([Opened Month-Year]) and [Closed Date]&amp;lt;=MonthEnd([Opened Month-Year])"} &amp;gt;} Distinct [Ticket Nbr])/Count( Distinct [Ticket Nbr])&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 03 Jun 2023 20:36:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Closure-Rate-using-Set-Analysis-where-Closed-Date-between/m-p/2079706#M88571</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2023-06-03T20:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: Closure Rate using Set Analysis where Closed Date between MonthStart(Opened Date) and MonthEnd(Opened Date)</title>
      <link>https://community.qlik.com/t5/App-Development/Closure-Rate-using-Set-Analysis-where-Closed-Date-between/m-p/2080167#M88603</link>
      <description>&lt;P&gt;This works! THANK YOU!&amp;nbsp; You're amazing!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jun 2023 14:17:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Closure-Rate-using-Set-Analysis-where-Closed-Date-between/m-p/2080167#M88603</guid>
      <dc:creator>msshawn3019</dc:creator>
      <dc:date>2023-06-05T14:17:21Z</dc:date>
    </item>
  </channel>
</rss>

