<?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: count only not closed tickets in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/count-only-not-closed-tickets/m-p/133214#M20000</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A possible solution would be to include a flag in each table (Ticket and position) that serves as a open/closed flag.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Ticket-table:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;if(len(trim(&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;EndDate))&amp;gt;0,1,0) as TicketStatus (1 is open, 0 is closed)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Same goes for the Position-table:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;if(len(trim(&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Position_End])&amp;gt;0,1,0) as PositionStatus (1 is open, 0 is closed)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;If you then take the TicketStatus and the sum of the PositionStatus you can do multiple checks:&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;TicketStatus = 1, Sum(PositionStatus) &amp;gt;= 1&amp;nbsp; has the result that the ticket is open, with one or multiple open positions&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;TicketStatus = 1, Sum(PositionStatus) &amp;lt; 1 has the result that the ticket is open, but only has closed positions&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Ticketstatus = 0, Sum(PositionStatus) &amp;gt;= 1 has the result that the ticket is closed, but there is at least one position that is open&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Ticketstatus = 0, Sum(PositionStatus) &amp;lt; 1 has the result that the ticket is closed and all positions of the ticket are closed&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's not the best solution, but it should work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Aug 2018 09:30:24 GMT</pubDate>
    <dc:creator>timpoismans</dc:creator>
    <dc:date>2018-08-22T09:30:24Z</dc:date>
    <item>
      <title>count only not closed tickets</title>
      <link>https://community.qlik.com/t5/QlikView/count-only-not-closed-tickets/m-p/133206#M19992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm new at QlikView and i need some help! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the following problem .. i have Ticketnumbers and one Ticketnumber can have several Positions. Now i want to count the Positions, where the ticketnumber is not closed (The EndDate of Ticketnumber is null!) .. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wher should i do the calculation? In the script? Or should i do it in the formula? And how i should do this?&lt;/P&gt;&lt;P&gt;With the following set analysis: =count({$&amp;lt;Position_Start={"*"}&amp;gt;} DistinctTicketnumber_Id) i got all Positions, which are open (because in my table, i only load the positions, where the Position_End field is null)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the problem is, that sometimes the Ticket is already closed, but the position not. In this case, my formula should not count this Ticketnumber_Id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Ticketnumbers are in an own table and the Positions are in there own table .. they are linked trough the Ticketnumber_ID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you need more information, please tell me. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2018 10:03:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/count-only-not-closed-tickets/m-p/133206#M19992</guid>
      <dc:creator>5abi0001</dc:creator>
      <dc:date>2018-08-13T10:03:28Z</dc:date>
    </item>
    <item>
      <title>Re: count only not closed tickets</title>
      <link>https://community.qlik.com/t5/QlikView/count-only-not-closed-tickets/m-p/133207#M19993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's almost always better to do it in the Script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you can do is create a new field in the Ticketnumbers table with:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load Ticketnumber_ID,&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;if(len(trim(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;EndDate))&amp;gt;0,1,0) as NotClosed&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;From...&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After that, you could do a sum(NotClosed) or you could do it using Set Analysis too. The first option is faster.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sorin. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2018 10:23:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/count-only-not-closed-tickets/m-p/133207#M19993</guid>
      <dc:creator>isorinrusu</dc:creator>
      <dc:date>2018-08-13T10:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: count only not closed tickets</title>
      <link>https://community.qlik.com/t5/QlikView/count-only-not-closed-tickets/m-p/133208#M19994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey! Should i do it in the Table where i have the positions to the tickets or in the table wherei&amp;nbsp; have the tickets? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2018 10:59:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/count-only-not-closed-tickets/m-p/133208#M19994</guid>
      <dc:creator>5abi0001</dc:creator>
      <dc:date>2018-08-13T10:59:18Z</dc:date>
    </item>
    <item>
      <title>Re: count only not closed tickets</title>
      <link>https://community.qlik.com/t5/QlikView/count-only-not-closed-tickets/m-p/133209#M19995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where you have the EndDate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sorin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2018 11:07:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/count-only-not-closed-tickets/m-p/133209#M19995</guid>
      <dc:creator>isorinrusu</dc:creator>
      <dc:date>2018-08-13T11:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: count only not closed tickets</title>
      <link>https://community.qlik.com/t5/QlikView/count-only-not-closed-tickets/m-p/133210#M19996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hm .. i have EndDate in both tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Tables look like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table with Tickets:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Ticketnumber_Id&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Open_Date &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;EndDate&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Employee&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Table with the Positions:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Ticketnumber_Id&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Position&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Position_Start&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Position_End&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;The Positions can also have an EndDate .. one ticketnumber can have severel positions .. and sometime because of bad quality of data .. in the Table with Tickets the Ticketnumber_Id is already closed, but in the Table with the Positions, the Position_End is null .. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;And now i want only count these positions which are open (have no Position_end date) and where the Tickets are not closed (EndDate is null)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;I hope now it is a little bit easier to understand. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2018 11:21:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/count-only-not-closed-tickets/m-p/133210#M19996</guid>
      <dc:creator>5abi0001</dc:creator>
      <dc:date>2018-08-13T11:21:37Z</dc:date>
    </item>
    <item>
      <title>Re: count only not closed tickets</title>
      <link>https://community.qlik.com/t5/QlikView/count-only-not-closed-tickets/m-p/133211#M19997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be like this:&lt;/P&gt;&lt;P&gt;count({$&amp;lt;Position_Start={"*"}, TicketStatus = {"Closed"}&amp;gt; + &amp;lt;Position_End = {" "}&amp;gt;} Distinct Ticketnumber_Id)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2018 13:58:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/count-only-not-closed-tickets/m-p/133211#M19997</guid>
      <dc:creator>BalaBhaskar_Qlik</dc:creator>
      <dc:date>2018-08-13T13:58:20Z</dc:date>
    </item>
    <item>
      <title>Re: count only not closed tickets</title>
      <link>https://community.qlik.com/t5/QlikView/count-only-not-closed-tickets/m-p/133212#M19998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey, in my table with the Positions i already have only these Positions where Position_End is null! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because of bad quality of data .. sometime it is so that the Ticket is already closed but the position_end ist null -&amp;gt; and in this case it should not count this ticket. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2018 14:07:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/count-only-not-closed-tickets/m-p/133212#M19998</guid>
      <dc:creator>5abi0001</dc:creator>
      <dc:date>2018-08-13T14:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: count only not closed tickets</title>
      <link>https://community.qlik.com/t5/QlikView/count-only-not-closed-tickets/m-p/133213#M19999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;.. does someone can help me? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2018 08:50:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/count-only-not-closed-tickets/m-p/133213#M19999</guid>
      <dc:creator>5abi0001</dc:creator>
      <dc:date>2018-08-22T08:50:53Z</dc:date>
    </item>
    <item>
      <title>Re: count only not closed tickets</title>
      <link>https://community.qlik.com/t5/QlikView/count-only-not-closed-tickets/m-p/133214#M20000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A possible solution would be to include a flag in each table (Ticket and position) that serves as a open/closed flag.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Ticket-table:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;if(len(trim(&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;EndDate))&amp;gt;0,1,0) as TicketStatus (1 is open, 0 is closed)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Same goes for the Position-table:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;if(len(trim(&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Position_End])&amp;gt;0,1,0) as PositionStatus (1 is open, 0 is closed)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;If you then take the TicketStatus and the sum of the PositionStatus you can do multiple checks:&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;TicketStatus = 1, Sum(PositionStatus) &amp;gt;= 1&amp;nbsp; has the result that the ticket is open, with one or multiple open positions&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;TicketStatus = 1, Sum(PositionStatus) &amp;lt; 1 has the result that the ticket is open, but only has closed positions&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Ticketstatus = 0, Sum(PositionStatus) &amp;gt;= 1 has the result that the ticket is closed, but there is at least one position that is open&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Ticketstatus = 0, Sum(PositionStatus) &amp;lt; 1 has the result that the ticket is closed and all positions of the ticket are closed&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's not the best solution, but it should work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2018 09:30:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/count-only-not-closed-tickets/m-p/133214#M20000</guid>
      <dc:creator>timpoismans</dc:creator>
      <dc:date>2018-08-22T09:30:24Z</dc:date>
    </item>
  </channel>
</rss>

