<?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: Counting status change in certain cells in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Counting-status-change-in-certain-cells/m-p/1194382#M628654</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Massimo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you suggest the script here?&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does it have to be resident load and need to order records by device_id and then time stamp?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 30 Sep 2016 13:54:58 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-09-30T13:54:58Z</dc:date>
    <item>
      <title>Counting status change in certain cells</title>
      <link>https://community.qlik.com/t5/QlikView/Counting-status-change-in-certain-cells/m-p/1194378#M628650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Qlik experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have log files that contain fields as follows: Time Stamp, device name, cell_id, region and status, on_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cell identifies a sub are where the device is located.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement to count status change for each device from one cell to another cell with the following criteria:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for each device name if cell id is different from the previous one and status is "IN" and on_line &amp;gt;0, then include this in the count. Otherwise don't count.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am sure this is very simple but could someone suggest the right expression or script for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2016 17:05:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Counting-status-change-in-certain-cells/m-p/1194378#M628650</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-29T17:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: Counting status change in certain cells</title>
      <link>https://community.qlik.com/t5/QlikView/Counting-status-change-in-certain-cells/m-p/1194379#M628651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do a resident load of your table order by device, timestamp (or maybe an id you can add to order the table records as you want).&lt;/P&gt;&lt;P&gt;Use the peek function to check if the device of the current row is the same as the previous row and if the sub changed; also check the status N and on_lie &amp;gt; 0. If all the check are ok, you can set a new column (flag) to 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a chart, sum the flag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2016 19:18:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Counting-status-change-in-certain-cells/m-p/1194379#M628651</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2016-09-29T19:18:32Z</dc:date>
    </item>
    <item>
      <title>Re: Counting status change in certain cells</title>
      <link>https://community.qlik.com/t5/QlikView/Counting-status-change-in-certain-cells/m-p/1194380#M628652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Adding to Maxgro's solution from above: &lt;/P&gt;&lt;P&gt;Use sum(Flag) in your chart expression with relevant dimension. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF(cell_id &amp;lt;&amp;gt; Peek('cell_id) AND status = 'IN' AND on_line &amp;gt;0, 1,0) As Flag;&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;LOAD Time Stamp, &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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; device name, &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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cell_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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; region, &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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; status, &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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; on_line&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 &amp;lt;YourLogfilenameLocation path&amp;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;&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;If this doesn't work please share your script or a sample file to work on it?&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2016 19:52:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Counting-status-change-in-certain-cells/m-p/1194380#M628652</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2016-09-29T19:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: Counting status change in certain cells</title>
      <link>https://community.qlik.com/t5/QlikView/Counting-status-change-in-certain-cells/m-p/1194381#M628653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: small;"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: small;"&gt;&lt;/P&gt;&lt;DIV&gt;It does not seem to be working. BTW, what is the difference between previous and peek in this case? can we use previous instead?&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: small;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: small;"&gt;Please find attached the sample file. The header names are a little bit different which is called area number, but they are conceptually the same. I'd like to know the rate of area number change for each customer_id wit certain condition.&amp;nbsp; In this sample the status is IN_NETWORK.&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: small;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: small;"&gt;Thanks,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: small;"&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="gmail_quote" style="margin: 0 0 0 0.8ex; border-left-width: 1px; padding-left: 1ex;"&gt;&lt;DIV style="background: #eeeeef; padding: 20px;"&gt;&lt;P align="center" style="color: #5f6062; font-size: 10px; font-family: Arial, Helvetica, sans-serif;"&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Sep 2016 09:47:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Counting-status-change-in-certain-cells/m-p/1194381#M628653</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-30T09:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: Counting status change in certain cells</title>
      <link>https://community.qlik.com/t5/QlikView/Counting-status-change-in-certain-cells/m-p/1194382#M628654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Massimo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you suggest the script here?&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does it have to be resident load and need to order records by device_id and then time stamp?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Sep 2016 13:54:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Counting-status-change-in-certain-cells/m-p/1194382#M628654</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-30T13:54:58Z</dc:date>
    </item>
    <item>
      <title>Re: Counting status change in certain cells</title>
      <link>https://community.qlik.com/t5/QlikView/Counting-status-change-in-certain-cells/m-p/1194383#M628655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure to understand all your conditions.&lt;/P&gt;&lt;P&gt;I set the flag when the customer is the same and the area number changes and status IN_NETWORK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PFA&lt;/P&gt;&lt;P&gt;&lt;IMG alt="1.png" class="jive-image image-1" height="376" src="https://community.qlik.com/legacyfs/online/139327_1.png" style="height: 376.111px; width: 731px;" width="731" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Sep 2016 18:07:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Counting-status-change-in-certain-cells/m-p/1194383#M628655</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2016-09-30T18:07:28Z</dc:date>
    </item>
    <item>
      <title>Re: Counting status change in certain cells</title>
      <link>https://community.qlik.com/t5/QlikView/Counting-status-change-in-certain-cells/m-p/1194384#M628656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Maxgro,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the showing the result with the example and the QVW file. I wonder if you could post the script here since I am still working on getting the professional license so I can't open the file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What&amp;nbsp; have done in the script is after loading the full table I added resident load as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp; Date,Time, &lt;/P&gt;&lt;P&gt;&amp;nbsp; [area number], [customer id],&lt;/P&gt;&lt;P&gt;&amp;nbsp; online,status,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If([&lt;SPAN style="font-size: 13.3333px;"&gt;area number&lt;/SPAN&gt;] &amp;lt;&amp;gt; peek([&lt;SPAN style="font-size: 13.3333px;"&gt;area number&lt;/SPAN&gt;]) and &lt;SPAN style="font-size: 13.3333px;"&gt;status&lt;/SPAN&gt; = '*IN_NETWORK*' AND online &amp;gt;0,1,0) as Switch &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Resident device-status&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ORDER BY [device id],Date,Time;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it does not give me correct result. It is either all 0 or 1. Anything missing in my script?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Oct 2016 18:39:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Counting-status-change-in-certain-cells/m-p/1194384#M628656</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-02T18:39:33Z</dc:date>
    </item>
    <item>
      <title>Re: Counting status change in certain cells</title>
      <link>https://community.qlik.com/t5/QlikView/Counting-status-change-in-certain-cells/m-p/1194385#M628657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be try this ?&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; Date,Time,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; [area number], [customer id],&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; online,status,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-size: 13px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If([&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;area number&lt;/SPAN&gt;] &amp;lt;&amp;gt; peek([&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;area number&lt;/SPAN&gt;]) and &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 13.3333px;"&gt;&lt;STRONG&gt;Wildmatch(status, &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px;"&gt;&lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt; '*IN_NETWORK*')&lt;/STRONG&gt;&lt;/SPAN&gt; AND online &amp;gt;0,1,0) as Switch&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Resident device-status&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ORDER BY [device id],Date,Time;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Oct 2016 18:50:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Counting-status-change-in-certain-cells/m-p/1194385#M628657</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2016-10-02T18:50:55Z</dc:date>
    </item>
    <item>
      <title>Re: Counting status change in certain cells</title>
      <link>https://community.qlik.com/t5/QlikView/Counting-status-change-in-certain-cells/m-p/1194386#M628658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;Source:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD //rowno() as id,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; Date, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Time, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [network id], &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [area number], &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; customer_id, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; type, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Status, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; latency, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; region&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FROM&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;[Data_Sample for qlik2..csv]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;(txt, codepage is 1252, embedded labels, delimiter is ',', msq);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;left join (Source)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//NoConcatenate&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD //id,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; Date, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Time, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //[network id], &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [area number], &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; customer_id, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //type, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Status, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //latency, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //region,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(customer_id = peek('customer_id') and [area number] &amp;lt;&amp;gt; peek('area number'),1,0) as Flag&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Resident Source&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Where wildmatch(Status, '*IN_NETWORK*')&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Order By customer_id, Date, Time;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Oct 2016 18:53:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Counting-status-change-in-certain-cells/m-p/1194386#M628658</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2016-10-02T18:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: Counting status change in certain cells</title>
      <link>https://community.qlik.com/t5/QlikView/Counting-status-change-in-certain-cells/m-p/1194387#M628659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;Hi Maxgro&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Many Thanks for this!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Oct 2016 19:31:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Counting-status-change-in-certain-cells/m-p/1194387#M628659</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-02T19:31:57Z</dc:date>
    </item>
  </channel>
</rss>

