<?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: Change how the records are showed in table in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Change-how-the-records-are-showed-in-table/m-p/2131924#M92010</link>
    <description>&lt;P&gt;G'day&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/246163"&gt;@OrbytaQliker&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;The problem appears to be that you are trying to display values from different rows in the data table onto the same row in the display table. I have two ideas to investigate:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Table Join in the Load Script: separate each column into it's own table and then outer join the tables together. This would work only if you have other key columns to join on&lt;/LI&gt;
&lt;LI&gt;Aggregate in UI table: use the chart function firstsortedvalue() to allow the table to consolidate the rows&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;My preference would be to find a way to reshape the data in the load script. Where did the data come from? This looks like data that has been concatenated together from different source tables. Maybe need to do table joins rather than concatenate.&lt;/P&gt;
&lt;P&gt;Cheers, Barnaby.&lt;/P&gt;</description>
    <pubDate>Wed, 25 Oct 2023 20:16:51 GMT</pubDate>
    <dc:creator>barnabyd</dc:creator>
    <dc:date>2023-10-25T20:16:51Z</dc:date>
    <item>
      <title>Change how the records are showed in table</title>
      <link>https://community.qlik.com/t5/App-Development/Change-how-the-records-are-showed-in-table/m-p/2131673#M91987</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi everyone,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I have a table with the following records, in which each record belongs to its column, and in other columns will be empty.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="first.png" style="width: 661px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/118849i9407809D693384A2/image-size/large?v=v2&amp;amp;px=999" role="button" title="first.png" alt="first.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;[01,02,03,04&lt;/P&gt;
&lt;P&gt;7090,$(null),$(null),$(null)&lt;/P&gt;
&lt;P&gt;X090,$(null),$(null),$(null)&lt;/P&gt;
&lt;P&gt;$(null),5090,$(null),$(null)&lt;/P&gt;
&lt;P&gt;$(null),X090,$(null),$(null)&lt;/P&gt;
&lt;P&gt;$(null),$(null),0090,$(null)&lt;/P&gt;
&lt;P&gt;$(null),$(null),X090,$(null)&lt;/P&gt;
&lt;P&gt;$(null),$(null),$(null),X090&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;But I'd like to show the data in the following way. Each column should have its records shown from the first row of the table, instead of having a lot of empty space.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="after.png" style="width: 659px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/118850i5F3FD33D12233767/image-size/large?v=v2&amp;amp;px=999" role="button" title="after.png" alt="after.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;[01,02,03,04&lt;/P&gt;
&lt;P&gt;7090,5090,0090,X090&lt;/P&gt;
&lt;P&gt;X090,X090,X090,$(null)&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;is this possible by changing table properties or should I need work on the load script?&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you very much if you could dedicate some precious time to helping me.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Oct 2023 08:51:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Change-how-the-records-are-showed-in-table/m-p/2131673#M91987</guid>
      <dc:creator>OrbytaQliker</dc:creator>
      <dc:date>2023-10-25T08:51:57Z</dc:date>
    </item>
    <item>
      <title>Re: Change how the records are showed in table</title>
      <link>https://community.qlik.com/t5/App-Development/Change-how-the-records-are-showed-in-table/m-p/2131872#M91999</link>
      <description>&lt;P&gt;Need to do it in script, something like this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;T:&lt;BR /&gt;Load&lt;BR /&gt;trim(01) as 1,&lt;BR /&gt;trim(02) as 2,&lt;BR /&gt;trim(03) as 3,&lt;BR /&gt;trim(04) as 4;&lt;BR /&gt;Load * Inline&lt;BR /&gt;[01,02,03,04&lt;/P&gt;
&lt;P&gt;7090,$(null),$(null),$(null)&lt;/P&gt;
&lt;P&gt;X090,$(null),$(null),$(null)&lt;/P&gt;
&lt;P&gt;$(null),5090,$(null),$(null)&lt;/P&gt;
&lt;P&gt;$(null),X090,$(null),$(null)&lt;/P&gt;
&lt;P&gt;$(null),$(null),0090,$(null)&lt;/P&gt;
&lt;P&gt;$(null),$(null),X090,$(null)&lt;/P&gt;
&lt;P&gt;$(null),$(null),$(null),X090&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;</description>
      <pubDate>Wed, 25 Oct 2023 16:53:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Change-how-the-records-are-showed-in-table/m-p/2131872#M91999</guid>
      <dc:creator>maheshkuttappa</dc:creator>
      <dc:date>2023-10-25T16:53:50Z</dc:date>
    </item>
    <item>
      <title>Re: Change how the records are showed in table</title>
      <link>https://community.qlik.com/t5/App-Development/Change-how-the-records-are-showed-in-table/m-p/2131924#M92010</link>
      <description>&lt;P&gt;G'day&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/246163"&gt;@OrbytaQliker&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;The problem appears to be that you are trying to display values from different rows in the data table onto the same row in the display table. I have two ideas to investigate:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Table Join in the Load Script: separate each column into it's own table and then outer join the tables together. This would work only if you have other key columns to join on&lt;/LI&gt;
&lt;LI&gt;Aggregate in UI table: use the chart function firstsortedvalue() to allow the table to consolidate the rows&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;My preference would be to find a way to reshape the data in the load script. Where did the data come from? This looks like data that has been concatenated together from different source tables. Maybe need to do table joins rather than concatenate.&lt;/P&gt;
&lt;P&gt;Cheers, Barnaby.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Oct 2023 20:16:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Change-how-the-records-are-showed-in-table/m-p/2131924#M92010</guid>
      <dc:creator>barnabyd</dc:creator>
      <dc:date>2023-10-25T20:16:51Z</dc:date>
    </item>
  </channel>
</rss>

