<?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: Identify store in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Identify-store/m-p/578773#M215219</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Oscar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes. count duplicated ones in the table and which store are duplicated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 14 Mar 2014 23:26:02 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-03-14T23:26:02Z</dc:date>
    <item>
      <title>Identify store</title>
      <link>https://community.qlik.com/t5/QlikView/Identify-store/m-p/578771#M215217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can identify if store are repeat in the current period for example : ST1,ST5.&lt;/P&gt;&lt;P&gt;And how can I count them ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Judikael,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2014 23:02:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identify-store/m-p/578771#M215217</guid>
      <dc:creator />
      <dc:date>2014-03-14T23:02:56Z</dc:date>
    </item>
    <item>
      <title>Re: Identify store</title>
      <link>https://community.qlik.com/t5/QlikView/Identify-store/m-p/578772#M215218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, what do you want to do when you've identified those? You just want to count the duplicated ones in the table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2014 23:09:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identify-store/m-p/578772#M215218</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-03-14T23:09:01Z</dc:date>
    </item>
    <item>
      <title>Re: Identify store</title>
      <link>https://community.qlik.com/t5/QlikView/Identify-store/m-p/578773#M215219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Oscar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes. count duplicated ones in the table and which store are duplicated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2014 23:26:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identify-store/m-p/578773#M215219</guid>
      <dc:creator />
      <dc:date>2014-03-14T23:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: Identify store</title>
      <link>https://community.qlik.com/t5/QlikView/Identify-store/m-p/578774#M215220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Temp:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;Year, Month, Store, NBR&lt;/P&gt;&lt;P&gt;2014, janv, ST1, 20&lt;/P&gt;&lt;P&gt;2014, fevr, ST2, 18&lt;/P&gt;&lt;P&gt;2014, mars, ST1, 16&lt;/P&gt;&lt;P&gt;2014, avr, ST4, 10&lt;/P&gt;&lt;P&gt;2014, mai, ST5, 25&lt;/P&gt;&lt;P&gt;2014, juin, ST3, 10&lt;/P&gt;&lt;P&gt;2014, juil, ST7, 20&lt;/P&gt;&lt;P&gt;2014, aout, ST5, 16&lt;/P&gt;&lt;P&gt;2014, sept, ST9, 1&lt;/P&gt;&lt;P&gt;2014, oct, ST10, 9&lt;/P&gt;&lt;P&gt;2014, nov, ST11, 1&lt;/P&gt;&lt;P&gt;2014, dec, ST12, 1&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FINAL:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp; *,&lt;/P&gt;&lt;P&gt;&amp;nbsp; IF(Store = Previous(Store), 1, 0) as Flag&lt;/P&gt;&lt;P&gt;Resident Temp&lt;/P&gt;&lt;P&gt;Order By Store;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop Table Temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now Create a Text Box with Expression = SUM(Flag) or SUM({&amp;lt;Flag = {1}&amp;gt;}Flag)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE : To get the distinct Duplicated Store.. use below in Text Box..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=COUNT({&amp;lt;Flag = {1}&amp;gt;}DISTINCT Store)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To find the Store Name...&lt;/P&gt;&lt;P&gt;=Concat({&amp;lt;Flag = {1}&amp;gt;}DISTINCT Store, ', ')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2014 23:30:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identify-store/m-p/578774#M215220</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-03-14T23:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: Identify store</title>
      <link>https://community.qlik.com/t5/QlikView/Identify-store/m-p/578775#M215221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please see if the attached is what you are looking for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; I've added a calculated dimension using aggr function. Let me know if you ahve any question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;OM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2014 23:30:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identify-store/m-p/578775#M215221</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-03-14T23:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: Identify store</title>
      <link>https://community.qlik.com/t5/QlikView/Identify-store/m-p/578776#M215222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks OM!!&lt;/P&gt;&lt;P&gt;Exactly what I mean.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Mar 2014 00:17:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identify-store/m-p/578776#M215222</guid>
      <dc:creator />
      <dc:date>2014-03-15T00:17:48Z</dc:date>
    </item>
  </channel>
</rss>

