<?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: How to add 100+ columns of a db table into a Qlik Sense table? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-add-100-columns-of-a-db-table-into-a-Qlik-Sense-table/m-p/1231062#M24056</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;crosstable worked great. Thanks Petter!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Feb 2017 22:39:54 GMT</pubDate>
    <dc:creator />
    <dc:date>2017-02-23T22:39:54Z</dc:date>
    <item>
      <title>How to add 100+ columns of a db table into a Qlik Sense table?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-add-100-columns-of-a-db-table-into-a-Qlik-Sense-table/m-p/1231060#M24054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Qlik Sense 3.1 SR4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to build a table in Qlik Sense with over 100+ columns contained in the database table using both the Table and the "Simple Table" (com-qliktech-simpletable) extension. The table is for visualization purposes only, as if one were looking at an Excel Spreadsheet. No calculations or transforms are being performed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Due to the number of columns present, only Simple Table appears to allow horizontal scrolling.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It appears however that once 50 columns are added, any additional columns (dimensions) added does not populate the data associated with those columns. Only the column headings appear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've also reviewed Simple Table's com-qliktech-simpletable.js file to see if the hard limit could be changed, but have been unsuccessful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has anyone had success in displaying large tables in Qlik Sense?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2017 21:26:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-add-100-columns-of-a-db-table-into-a-Qlik-Sense-table/m-p/1231060#M24054</guid>
      <dc:creator />
      <dc:date>2017-02-20T21:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to add 100+ columns of a db table into a Qlik Sense table?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-add-100-columns-of-a-db-table-into-a-Qlik-Sense-table/m-p/1231061#M24055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you unpivot your table by using CrossTable Load in the load script and then use PivotTable in the UI it should work well for you.... The new dimension you get when doing a CrossTable should be used as a column dimension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just tested it with some randomly generated numbers: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;676 columns x 32000 rows or visa versa... you can just pivot it interactivly...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="2017-02-21 01_38_35-Qlik Sense Desktop.png" class="jive-image image-1" src="/legacyfs/online/153856_2017-02-21 01_38_35-Qlik Sense Desktop.png" style="height: 328px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Qlik Sense with this app claims 1.6 GB memory in total.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the load script:&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14876376638529247 jive_text_macro" jivemacro_uid="_14876376638529247"&gt;
&lt;P&gt;DATA2:&lt;/P&gt;
&lt;P&gt;LOAD &lt;/P&gt;
&lt;P&gt;&amp;nbsp; Chr(Floor(Rand()*26)+Ord('A'))&amp;amp;Chr(Floor(Rand()*26)+Ord('A')) AS Col,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; IterNo() AS Row,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Ceil( Rand()*1000) + 5000 AS Cell&lt;/P&gt;
&lt;P&gt;WHILE &lt;/P&gt;
&lt;P&gt;&amp;nbsp; IterNo() &amp;lt;= 32000;&lt;/P&gt;
&lt;P&gt;LOAD &lt;/P&gt;
&lt;P&gt;&amp;nbsp; 1&lt;/P&gt;
&lt;P&gt;AUTOGENERATE 1000;&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2017 00:14:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-add-100-columns-of-a-db-table-into-a-Qlik-Sense-table/m-p/1231061#M24055</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2017-02-21T00:14:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to add 100+ columns of a db table into a Qlik Sense table?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-add-100-columns-of-a-db-table-into-a-Qlik-Sense-table/m-p/1231062#M24056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;crosstable worked great. Thanks Petter!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2017 22:39:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-add-100-columns-of-a-db-table-into-a-Qlik-Sense-table/m-p/1231062#M24056</guid>
      <dc:creator />
      <dc:date>2017-02-23T22:39:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to add 100+ columns of a db table into a Qlik Sense table?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-add-100-columns-of-a-db-table-into-a-Qlik-Sense-table/m-p/1231063#M24057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you consider your question answered please close the thread by marking it as answered.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2017 23:10:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-add-100-columns-of-a-db-table-into-a-Qlik-Sense-table/m-p/1231063#M24057</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2017-02-23T23:10:15Z</dc:date>
    </item>
  </channel>
</rss>

