<?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: Convert to set analysis in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Convert-to-set-analysis/m-p/1252787#M25297</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks Ruben&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i also want to add following condition &lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;count({-$&amp;lt;O_Date={'&amp;gt;=$(=Date(WeekStart(Max(O_Date), 0, 0),'DD/MM/YYYY'))&amp;lt;=$(=Date(WeekEnd(Max(O_Date), 0, 0),'DD/MM/YYYY'))'}&amp;gt;}CustomerID)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;in&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;Count({&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;[SOF Type]={'Offline'}, [stat_id_pk]=P(&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;[stat_id_pk]&lt;/SPAN&gt;)-{'5','6'}&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;, Active_qty={1}&lt;/STRONG&gt;&amp;gt;} &lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;[SOF Number])&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 30 Dec 2016 11:30:38 GMT</pubDate>
    <dc:creator>gauravgg</dc:creator>
    <dc:date>2016-12-30T11:30:38Z</dc:date>
    <item>
      <title>Convert to set analysis</title>
      <link>https://community.qlik.com/t5/App-Development/Convert-to-set-analysis/m-p/1252785#M25295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;count(If([SOF Type]='Offline'&amp;nbsp; and [stat_id_pk]&amp;lt;&amp;gt;5 and [stat_id_pk]&amp;lt;&amp;gt;6 ,&lt;/P&gt;&lt;P&gt;if([serv_under_implementation_qty]&amp;lt;&amp;gt;0 or [serv_pandding_qty]&amp;lt;&amp;gt;0 or [serv_to_be_cancelled_qty]&amp;lt;&amp;gt;0 or&lt;/P&gt;&lt;P&gt;[serv_to_be_deactivated_qty]&amp;lt;&amp;gt;0 or [serv_under_deactivation_qty]&amp;lt;&amp;gt;0,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[SOF Number])))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to convert above expression in set analysis&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Dec 2016 07:33:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Convert-to-set-analysis/m-p/1252785#M25295</guid>
      <dc:creator>gauravgg</dc:creator>
      <dc:date>2016-12-30T07:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: Convert to set analysis</title>
      <link>https://community.qlik.com/t5/App-Development/Convert-to-set-analysis/m-p/1252786#M25296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guarav, creating one field in script that does the last checks (all those &amp;lt;&amp;gt;0) can help a lot;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;if([serv_under_implementation_qty]&amp;lt;&amp;gt;0 or [serv_pandding_qty]&amp;lt;&amp;gt;0 or [serv_to_be_cancelled_qty]&amp;lt;&amp;gt;0 or&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[serv_to_be_deactivated_qty]&amp;lt;&amp;gt;0 or [serv_under_deactivation_qty]&amp;lt;&amp;gt;0, 1, 0) as Active_qty&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Count({&amp;lt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[SOF Type]={'Offline'}, [stat_id_pk]=P(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[stat_id_pk]&lt;/SPAN&gt;)-{'5','6'}&lt;STRONG&gt;, Active_qty={1}&lt;/STRONG&gt;&amp;gt;} &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[SOF Number])&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Dec 2016 07:52:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Convert-to-set-analysis/m-p/1252786#M25296</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2016-12-30T07:52:17Z</dc:date>
    </item>
    <item>
      <title>Re: Convert to set analysis</title>
      <link>https://community.qlik.com/t5/App-Development/Convert-to-set-analysis/m-p/1252787#M25297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks Ruben&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i also want to add following condition &lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;count({-$&amp;lt;O_Date={'&amp;gt;=$(=Date(WeekStart(Max(O_Date), 0, 0),'DD/MM/YYYY'))&amp;lt;=$(=Date(WeekEnd(Max(O_Date), 0, 0),'DD/MM/YYYY'))'}&amp;gt;}CustomerID)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;in&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;Count({&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;[SOF Type]={'Offline'}, [stat_id_pk]=P(&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;[stat_id_pk]&lt;/SPAN&gt;)-{'5','6'}&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;, Active_qty={1}&lt;/STRONG&gt;&amp;gt;} &lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;[SOF Number])&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Dec 2016 11:30:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Convert-to-set-analysis/m-p/1252787#M25297</guid>
      <dc:creator>gauravgg</dc:creator>
      <dc:date>2016-12-30T11:30:38Z</dc:date>
    </item>
    <item>
      <title>Re: Convert to set analysis</title>
      <link>https://community.qlik.com/t5/App-Development/Convert-to-set-analysis/m-p/1252788#M25298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure how to want to include the count... are you refering just to the same set analysis? Maybe:&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12.8px; font-family: arial, sans-serif; color: #222222;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Count({&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;[SOF Type]={'Offline'}, [stat_id_pk]=P(&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;[stat_id_pk]&lt;/SPAN&gt;)-{'5','6'}&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;, Active_qty={1}&lt;/STRONG&gt;&amp;gt;-&lt;STRONG style="font-size: 12.8px; font-family: arial, sans-serif; color: #222222;"&gt;&amp;lt;O_Date={"&amp;gt;=$(=Date(WeekStart(Max(O_Date), 0, 0),'DD/MM/YYYY'))&amp;lt;=$(=Date(WeekEnd(Max(O_Date), 0, 0),'DD/MM/YYYY'))"}&amp;gt;&lt;/STRONG&gt;} &lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;[SOF Number])&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #3d3d3d; font-style: inherit; font-size: 13px; background-color: #f2f2f2; font-family: inherit; font-weight: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #3d3d3d; font-style: inherit; font-size: 13px; background-color: #f2f2f2; font-family: inherit; font-weight: inherit;"&gt;or&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #3d3d3d; font-style: inherit; font-size: 13px; background-color: #f2f2f2; font-family: inherit; font-weight: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #3d3d3d; font-style: inherit; font-size: 13px; background-color: #f2f2f2; font-family: inherit; font-weight: inherit;"&gt;&lt;STRONG style="font-size: 12.8px; font-family: arial, sans-serif; color: #222222;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Count({&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;[SOF Type]={'Offline'}, [stat_id_pk]=P(&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;[stat_id_pk]&lt;/SPAN&gt;)-{'5','6'}&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;, Active_qty={1}, &lt;STRONG style="font-size: 12.8px; font-family: arial, sans-serif; color: #222222;"&gt;&lt;STRONG style="font-size: 12.8px; font-family: arial, sans-serif; color: #222222;"&gt;CustomerID&lt;/STRONG&gt;=P({-$&amp;lt;O_Date={"&amp;gt;=$(=Date(WeekStart(Max(O_Date), 0, 0),'DD/MM/YYYY'))&amp;lt;=$(=Date(WeekEnd(Max(O_Date), 0, 0),'DD/MM/YYYY'))"}&amp;gt;}CustomerID)&lt;/STRONG&gt;&lt;/STRONG&gt;&amp;gt;} &lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;[SOF Number])&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Dec 2016 13:08:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Convert-to-set-analysis/m-p/1252788#M25298</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2016-12-30T13:08:55Z</dc:date>
    </item>
  </channel>
</rss>

