<?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/2526524#M107232</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/232930"&gt;@Vikash938&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/49432"&gt;@Chanty4u&lt;/a&gt;'s suggestion is entirely correct, if you want to see duplicate rows, but your question suggests an issue you may be missing.&lt;/P&gt;&lt;P&gt;In that table the first three columns should be Dimensions, but the third should be a Measure, as it is a numeric value. The Measure can be created with drag and drop or be typed in, and it simply needs to be&amp;nbsp;&lt;STRONG&gt;sum(SalesAmount)&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;If you do this you will still get three rows, but you will have the correct total of&amp;nbsp;&lt;STRONG&gt;2,400&amp;nbsp;&lt;/STRONG&gt;for that row. If you want to see that this was two laptops and not just one, you can use&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/49432"&gt;@Chanty4u&lt;/a&gt;'s solution, or if you want to see it is two rows you can add a counter to the table in the load:&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;&amp;nbsp; &amp;nbsp; 1 as LineCount,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; OrderID,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; Product,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; Region,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; SalesAmount&lt;BR /&gt;FROM YourSource;&lt;/P&gt;&lt;P&gt;You can then add another measure of&amp;nbsp;&lt;STRONG&gt;sum(LineCount)&lt;/STRONG&gt; to show that there were two laptops sold.&lt;/P&gt;&lt;P&gt;The advantage of using measures (apart from the big one that duplicates can get removed) is that you also get totals for those columns.&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 07 Aug 2025 08:31:27 GMT</pubDate>
    <dc:creator>stevedark</dc:creator>
    <dc:date>2025-08-07T08:31:27Z</dc:date>
    <item>
      <title>Identical Rows</title>
      <link>https://community.qlik.com/t5/App-Development/Identical-Rows/m-p/2526503#M107228</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;SPAN&gt;I have a data table that contains identical rows, and I want to display every single row in a table chart, exactly as it appears in the data model. the chart only displays three rows instead of the four I expect.&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 07 Aug 2025 06:43:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Identical-Rows/m-p/2526503#M107228</guid>
      <dc:creator>Vikash938</dc:creator>
      <dc:date>2025-08-07T06:43:49Z</dc:date>
    </item>
    <item>
      <title>Re: Identical Rows</title>
      <link>https://community.qlik.com/t5/App-Development/Identical-Rows/m-p/2526508#M107230</link>
      <description>&lt;P&gt;Hi try this&amp;nbsp;&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;RowNo() as UniqueRowID&lt;/P&gt;&lt;P&gt;FROM YourSource;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or try same&amp;nbsp; as rec () as unique&lt;/P&gt;&lt;P&gt;Or&amp;nbsp;&lt;/P&gt;&lt;P&gt;In front end table add this&amp;nbsp;&lt;/P&gt;&lt;P&gt;=RowNo(TOTAL)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Aug 2025 07:21:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Identical-Rows/m-p/2526508#M107230</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2025-08-07T07:21:57Z</dc:date>
    </item>
    <item>
      <title>Re: Identical Rows</title>
      <link>https://community.qlik.com/t5/App-Development/Identical-Rows/m-p/2526524#M107232</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/232930"&gt;@Vikash938&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/49432"&gt;@Chanty4u&lt;/a&gt;'s suggestion is entirely correct, if you want to see duplicate rows, but your question suggests an issue you may be missing.&lt;/P&gt;&lt;P&gt;In that table the first three columns should be Dimensions, but the third should be a Measure, as it is a numeric value. The Measure can be created with drag and drop or be typed in, and it simply needs to be&amp;nbsp;&lt;STRONG&gt;sum(SalesAmount)&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;If you do this you will still get three rows, but you will have the correct total of&amp;nbsp;&lt;STRONG&gt;2,400&amp;nbsp;&lt;/STRONG&gt;for that row. If you want to see that this was two laptops and not just one, you can use&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/49432"&gt;@Chanty4u&lt;/a&gt;'s solution, or if you want to see it is two rows you can add a counter to the table in the load:&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;&amp;nbsp; &amp;nbsp; 1 as LineCount,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; OrderID,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; Product,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; Region,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; SalesAmount&lt;BR /&gt;FROM YourSource;&lt;/P&gt;&lt;P&gt;You can then add another measure of&amp;nbsp;&lt;STRONG&gt;sum(LineCount)&lt;/STRONG&gt; to show that there were two laptops sold.&lt;/P&gt;&lt;P&gt;The advantage of using measures (apart from the big one that duplicates can get removed) is that you also get totals for those columns.&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Aug 2025 08:31:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Identical-Rows/m-p/2526524#M107232</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2025-08-07T08:31:27Z</dc:date>
    </item>
  </channel>
</rss>

