<?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: Identical rows in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Identical-rows/m-p/2510138#M104828</link>
    <description>&lt;P&gt;I do not completly ubderstand.&amp;nbsp;&lt;/P&gt;&lt;P&gt;How would you know that you could sum all the three identical rows in your first example,&amp;nbsp; but only three out of five rows in the second example?&amp;nbsp;&lt;/P&gt;&lt;P&gt;How would you go about to identify which rows are identical or not? Will all rows with the same invoice number be identical, or is it all rows with the same combination of invoice number and item code? Or can any of the columns differ so you would have to check uniqueness by looking at the combination of values in all columns?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 17 Mar 2025 05:38:33 GMT</pubDate>
    <dc:creator>Vegar</dc:creator>
    <dc:date>2025-03-17T05:38:33Z</dc:date>
    <item>
      <title>Identical rows</title>
      <link>https://community.qlik.com/t5/App-Development/Identical-rows/m-p/2509394#M104708</link>
      <description>&lt;P&gt;I have a table that have identical rows so how to handle the identical rows without losing the data.&lt;/P&gt;&lt;P&gt;My Query is when I create a KPI it will take only one value from that identical rows&amp;nbsp; But i need all the value.&lt;BR /&gt;How to handle this type of problem?&lt;/P&gt;</description>
      <pubDate>Wed, 12 Mar 2025 05:10:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Identical-rows/m-p/2509394#M104708</guid>
      <dc:creator>Vikash2024</dc:creator>
      <dc:date>2025-03-12T05:10:55Z</dc:date>
    </item>
    <item>
      <title>Re: Identical rows</title>
      <link>https://community.qlik.com/t5/App-Development/Identical-rows/m-p/2509395#M104709</link>
      <description>&lt;P&gt;Usually if you use&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sum(measure) will give you original result right ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or try this&amp;nbsp;&lt;/P&gt;&lt;P&gt;CONCAT(DISTINCT YourField, ', ')&lt;/P&gt;&lt;P&gt;Or try this&amp;nbsp;&lt;/P&gt;&lt;P&gt;SUM(AGGR(SUM(YourField), YourDimension))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Mar 2025 05:24:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Identical-rows/m-p/2509395#M104709</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2025-03-12T05:24:44Z</dc:date>
    </item>
    <item>
      <title>Re: Identical rows</title>
      <link>https://community.qlik.com/t5/App-Development/Identical-rows/m-p/2509397#M104710</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/305461"&gt;@Vikash2024&lt;/a&gt;&amp;nbsp;, at the script level, to your table,&amp;nbsp; add a column with "RowNo() as Row", this will help to handle the identical rows without losing the data.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Mar 2025 05:26:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Identical-rows/m-p/2509397#M104710</guid>
      <dc:creator>rajuamet</dc:creator>
      <dc:date>2025-03-12T05:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: Identical rows</title>
      <link>https://community.qlik.com/t5/App-Development/Identical-rows/m-p/2509399#M104711</link>
      <description>&lt;P&gt;The data is not lost. In Qlik will a table with identical row values only be displayed once, but if you make a KPI based on any field on those rows then it will consider both.&lt;/P&gt;&lt;P&gt;Consider thos data set.&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;Fruit, Qty&lt;/P&gt;&lt;P&gt;Banana, 5&lt;/P&gt;&lt;P&gt;Banana,5&lt;/P&gt;&lt;P&gt;Banana, 5];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using that data set.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Sum(Qty) = 15&lt;/LI&gt;&lt;LI&gt;Count(Fruit)=3&lt;/LI&gt;&lt;LI&gt;Concat(Fruit, ',')='Banana,Banana,Banana'&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;If you experience other then please explain and maybe add an example with a bit more details in order for us to help you better.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Mar 2025 05:56:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Identical-rows/m-p/2509399#M104711</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2025-03-12T05:56:09Z</dc:date>
    </item>
    <item>
      <title>Re: Identical rows</title>
      <link>https://community.qlik.com/t5/App-Development/Identical-rows/m-p/2509635#M104737</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/305461"&gt;@Vikash2024&lt;/a&gt;&amp;nbsp;where you able to fix/solve your problem?&lt;/P&gt;&lt;P&gt;If so then please consider marking one or multiple of the responses as a solution. That will be helpful info for others with similar questions in the future.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 05:58:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Identical-rows/m-p/2509635#M104737</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2025-03-13T05:58:13Z</dc:date>
    </item>
    <item>
      <title>Re: Identical rows</title>
      <link>https://community.qlik.com/t5/App-Development/Identical-rows/m-p/2509830#M104765</link>
      <description>&lt;P&gt;no still not&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 17:59:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Identical-rows/m-p/2509830#M104765</guid>
      <dc:creator>Vikash2024</dc:creator>
      <dc:date>2025-03-13T17:59:37Z</dc:date>
    </item>
    <item>
      <title>Re: Identical rows</title>
      <link>https://community.qlik.com/t5/App-Development/Identical-rows/m-p/2509881#M104772</link>
      <description>&lt;P&gt;Please elaborate on your issue and add some more details about what your current situation is, some details about curren data, fields, calculations and output; and some details about expected output.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2025 05:55:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Identical-rows/m-p/2509881#M104772</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2025-03-14T05:55:52Z</dc:date>
    </item>
    <item>
      <title>Re: Identical rows</title>
      <link>https://community.qlik.com/t5/App-Development/Identical-rows/m-p/2510135#M104827</link>
      <description>&lt;P&gt;Sure, these are the tables below images table 1 and table2 both have identical rows. In Table1 There are 3 rows with Invoice number INV001 and Table2 there are 5 rows with invoice no INV001. if i take sum(item net amount) Table1 is 5400.&lt;BR /&gt;and In Table2 sum(Item Net Amount) is 9000.&lt;BR /&gt;so here is my question I need the sum of Item net amount according to the table1 in Table2 also. like&lt;BR /&gt;Table1 : Sum(Item Net Amount) = 5400&lt;BR /&gt;Table 2 : Sum(Item Net Amount) = 5400&lt;BR /&gt;&lt;BR /&gt;I hope you will understand if not please do let me know.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Vikash2024_0-1742188677021.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/178643i26F2A37FA63FBBC2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Vikash2024_0-1742188677021.png" alt="Vikash2024_0-1742188677021.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Vikash2024_1-1742188705813.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/178644i88C29621497AD711/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Vikash2024_1-1742188705813.png" alt="Vikash2024_1-1742188705813.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 17 Mar 2025 05:18:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Identical-rows/m-p/2510135#M104827</guid>
      <dc:creator>Vikash2024</dc:creator>
      <dc:date>2025-03-17T05:18:56Z</dc:date>
    </item>
    <item>
      <title>Re: Identical rows</title>
      <link>https://community.qlik.com/t5/App-Development/Identical-rows/m-p/2510138#M104828</link>
      <description>&lt;P&gt;I do not completly ubderstand.&amp;nbsp;&lt;/P&gt;&lt;P&gt;How would you know that you could sum all the three identical rows in your first example,&amp;nbsp; but only three out of five rows in the second example?&amp;nbsp;&lt;/P&gt;&lt;P&gt;How would you go about to identify which rows are identical or not? Will all rows with the same invoice number be identical, or is it all rows with the same combination of invoice number and item code? Or can any of the columns differ so you would have to check uniqueness by looking at the combination of values in all columns?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Mar 2025 05:38:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Identical-rows/m-p/2510138#M104828</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2025-03-17T05:38:33Z</dc:date>
    </item>
    <item>
      <title>Re: Identical rows</title>
      <link>https://community.qlik.com/t5/App-Development/Identical-rows/m-p/2510140#M104829</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/305461"&gt;@Vikash2024&lt;/a&gt;&amp;nbsp;, Is there a logic behind why we have 3 identical rows in table 1 and 5 identical rows in table 2.&lt;/P&gt;&lt;P&gt;Also, If table 1 gives the expected output then that field can be used for measure right!&amp;nbsp;&lt;/P&gt;&lt;P&gt;I suspect that there will be an unique ID for the 3 rows if you are considering to use only the 3 rows.&amp;nbsp;&lt;/P&gt;&lt;P&gt;We are missing something here.&amp;nbsp;&lt;/P&gt;&lt;P&gt;As&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/25001"&gt;@Vegar&lt;/a&gt;&amp;nbsp;mentioned, how would you know that all three identical rows should be summed.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Mar 2025 06:08:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Identical-rows/m-p/2510140#M104829</guid>
      <dc:creator>rajuamet</dc:creator>
      <dc:date>2025-03-17T06:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: Identical rows</title>
      <link>https://community.qlik.com/t5/App-Development/Identical-rows/m-p/2510155#M104833</link>
      <description>&lt;P&gt;In the images that I shared with you. I loaded both the tables in Qlik sense. and compare when i take the KPI's for specific Invoice_no_&amp;nbsp; = 001 then&lt;BR /&gt;sum(Item Net Amount) = 5400 in Table1&amp;nbsp;&lt;BR /&gt;But When I will take Sum(Item Net Amount) in Table2. It will show me 9000.&lt;BR /&gt;My question is that when I took filter of Inovice_no_ = INV001. then in the both table of Sum(Item Net Amount) would be the same 5400.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Mar 2025 07:45:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Identical-rows/m-p/2510155#M104833</guid>
      <dc:creator>Vikash2024</dc:creator>
      <dc:date>2025-03-17T07:45:07Z</dc:date>
    </item>
    <item>
      <title>Re: Identical rows</title>
      <link>https://community.qlik.com/t5/App-Development/Identical-rows/m-p/2510156#M104834</link>
      <description>&lt;P&gt;In the images that I shared with you. I loaded both the tables in Qlik sense. and compare when i take the KPI's for specific Invoice_no_&amp;nbsp; = 001 then&lt;BR /&gt;sum(Item Net Amount) = 5400 in Table1&amp;nbsp;&lt;BR /&gt;But When I will take Sum(Item Net Amount) in Table2. It will show me 9000.&lt;BR /&gt;My question is that when I took filter of Inovice_no_ = INV001. then in the both table of Sum(Item Net Amount) would be the same 5400.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Mar 2025 07:45:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Identical-rows/m-p/2510156#M104834</guid>
      <dc:creator>Vikash2024</dc:creator>
      <dc:date>2025-03-17T07:45:17Z</dc:date>
    </item>
  </channel>
</rss>

