<?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: Table Design in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Table-Design/m-p/1805099#M65420</link>
    <description>&lt;P&gt;Change the Join Load to use an alias for Last Used:&lt;/P&gt;&lt;P&gt;LEFT JOIN (Table1) LOAD&amp;nbsp;&lt;BR /&gt;ID,&lt;BR /&gt;[Last Used] as LastUsed&lt;BR /&gt;from [table2.QVD](qvd);&lt;/P&gt;&lt;P&gt;-Rob&lt;BR /&gt;&lt;A href="http://masterssummit.com" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://qlikviewcookbook.com" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://www.easyqlik.com" target="_blank"&gt;http://www.easyqlik.com&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 04 May 2021 17:54:32 GMT</pubDate>
    <dc:creator>rwunderlich</dc:creator>
    <dc:date>2021-05-04T17:54:32Z</dc:date>
    <item>
      <title>Table Design</title>
      <link>https://community.qlik.com/t5/App-Development/Table-Design/m-p/1805090#M65417</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have a table below called usage&lt;/P&gt;&lt;P&gt;ID&amp;nbsp; &amp;nbsp;Last Used&lt;/P&gt;&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;01/03/2020&lt;/P&gt;&lt;P&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;01/05/2021&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;SQL SELECT&lt;BR /&gt;"id",&lt;BR /&gt;"lastUsed",&lt;/P&gt;&lt;P&gt;From xxxxxtable&lt;/P&gt;&lt;P&gt;Now I am bringing an qvd to the script editor. This qvd brings the same data structure as above but different data.&lt;/P&gt;&lt;P&gt;LEFT JOIN (Table1) LOAD * from [table2.QVD](qvd);&lt;/P&gt;&lt;P&gt;Now the above table is updated as below&lt;/P&gt;&lt;P&gt;ID&amp;nbsp; &amp;nbsp;Last Used&lt;/P&gt;&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;01/03/2020&lt;/P&gt;&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;04/08/2021&lt;/P&gt;&lt;P&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;01/05/2021&lt;/P&gt;&lt;P&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;04/28/2021&lt;/P&gt;&lt;P&gt;But I want the table in below format&lt;/P&gt;&lt;P&gt;ID&amp;nbsp; &amp;nbsp;Last Used&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;LastUsed&lt;/P&gt;&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;01/03/2020&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 04/08/2021&lt;/P&gt;&lt;P&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; 01/05/2021&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;04/28/2021&lt;/P&gt;&lt;P&gt;Any help will be appreciated!&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 May 2021 16:38:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Table-Design/m-p/1805090#M65417</guid>
      <dc:creator>jpjust</dc:creator>
      <dc:date>2021-05-04T16:38:44Z</dc:date>
    </item>
    <item>
      <title>Re: Table Design</title>
      <link>https://community.qlik.com/t5/App-Development/Table-Design/m-p/1805099#M65420</link>
      <description>&lt;P&gt;Change the Join Load to use an alias for Last Used:&lt;/P&gt;&lt;P&gt;LEFT JOIN (Table1) LOAD&amp;nbsp;&lt;BR /&gt;ID,&lt;BR /&gt;[Last Used] as LastUsed&lt;BR /&gt;from [table2.QVD](qvd);&lt;/P&gt;&lt;P&gt;-Rob&lt;BR /&gt;&lt;A href="http://masterssummit.com" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://qlikviewcookbook.com" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://www.easyqlik.com" target="_blank"&gt;http://www.easyqlik.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 May 2021 17:54:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Table-Design/m-p/1805099#M65420</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2021-05-04T17:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: Table Design</title>
      <link>https://community.qlik.com/t5/App-Development/Table-Design/m-p/1805132#M65427</link>
      <description>&lt;P&gt;Thanks. That works great!&lt;/P&gt;</description>
      <pubDate>Tue, 04 May 2021 20:22:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Table-Design/m-p/1805132#M65427</guid>
      <dc:creator>jpjust</dc:creator>
      <dc:date>2021-05-04T20:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: Table Design</title>
      <link>https://community.qlik.com/t5/App-Development/Table-Design/m-p/1805133#M65428</link>
      <description>&lt;P&gt;One more formatting question.&lt;/P&gt;&lt;P&gt;I have join between multiple tables and at the end I have one table as below in the app&lt;/P&gt;&lt;P&gt;Name&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Tags&lt;/P&gt;&lt;P&gt;Michael&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Banking&lt;/P&gt;&lt;P&gt;Michael&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Mortgage&lt;/P&gt;&lt;P&gt;Michael&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Forex&lt;/P&gt;&lt;P&gt;Is there a way that I can be able to show in a single record like below?&lt;/P&gt;&lt;P&gt;Name&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Tags&lt;/P&gt;&lt;P&gt;Michael&amp;nbsp; &amp;nbsp; &amp;nbsp;Banking, Mortgage,Forex&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 04 May 2021 20:26:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Table-Design/m-p/1805133#M65428</guid>
      <dc:creator>jpjust</dc:creator>
      <dc:date>2021-05-04T20:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: Table Design</title>
      <link>https://community.qlik.com/t5/App-Development/Table-Design/m-p/1805137#M65429</link>
      <description>&lt;P&gt;I tried some thing like this using concat but it throws expression error on the script.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Concat(SubField([name_u0], ' ', 1 ),',',SubField([name_u0], ' ', 2)) as NEWTag&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 04 May 2021 20:44:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Table-Design/m-p/1805137#M65429</guid>
      <dc:creator>jpjust</dc:creator>
      <dc:date>2021-05-04T20:44:51Z</dc:date>
    </item>
    <item>
      <title>Re: Table Design</title>
      <link>https://community.qlik.com/t5/App-Development/Table-Design/m-p/1805140#M65430</link>
      <description>&lt;P&gt;Using the first Name/Tags table shown above as input, the load would be like:&lt;/P&gt;&lt;P&gt;NewTags:&lt;BR /&gt;LOAD&lt;BR /&gt;&amp;nbsp; Name,&lt;BR /&gt;&amp;nbsp; Concat(Tags, ',') as NewTag&lt;BR /&gt;Resident TagTable&lt;BR /&gt;Group By Name;&lt;/P&gt;&lt;P&gt;-Rob&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 May 2021 20:54:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Table-Design/m-p/1805140#M65430</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2021-05-04T20:54:25Z</dc:date>
    </item>
  </channel>
</rss>

