<?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: Generate a dynamic table in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Generate-a-dynamic-table/m-p/1866059#M15970</link>
    <description>&lt;P&gt;Actually, I ended up forking qsQuickTableViewer and added a dynamic table option &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/mattiasthalen/qsQuickTableViewer/tree/Dynamic-Table-Option" target="_blank"&gt;https://github.com/mattiasthalen/qsQuickTableViewer/tree/Dynamic-Table-Option&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 02 Dec 2021 14:12:49 GMT</pubDate>
    <dc:creator>mattias_thalen</dc:creator>
    <dc:date>2021-12-02T14:12:49Z</dc:date>
    <item>
      <title>Generate a dynamic table</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Generate-a-dynamic-table/m-p/1865923#M15968</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I frequently create dynamic tables, as described here: &lt;A href="https://www.ometis.co.uk/creating-a-dynamic-table-in-qlik-sense/" target="_blank"&gt;https://www.ometis.co.uk/creating-a-dynamic-table-in-qlik-sense/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;This is very time consuming, especially when there is more than 50 available dimensions.&lt;/P&gt;
&lt;P&gt;Is there a way to create an extension that would do these step for me?&lt;/P&gt;</description>
      <pubDate>Thu, 02 Dec 2021 10:18:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Generate-a-dynamic-table/m-p/1865923#M15968</guid>
      <dc:creator>mattias_thalen</dc:creator>
      <dc:date>2021-12-02T10:18:41Z</dc:date>
    </item>
    <item>
      <title>Re: Generate a dynamic table</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Generate-a-dynamic-table/m-p/1865955#M15969</link>
      <description>&lt;P&gt;There are already extensions that do similar things, and are generally quite robust. Have a look at e.g. &lt;A href="https://community.vizlib.com/support/solutions/articles/35000128354-vizlib-custom-report-introduction" target="_blank"&gt;https://community.vizlib.com/support/solutions/articles/35000128354-vizlib-custom-report-introduction&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;though other solutions exist for the same problem (I happen to use the Vizlib one as a customer).&lt;/P&gt;
&lt;P&gt;Of course, if someone else managed to do it, you probably could too, if you'd prefer to make your own extension.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Dec 2021 10:59:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Generate-a-dynamic-table/m-p/1865955#M15969</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2021-12-02T10:59:44Z</dc:date>
    </item>
    <item>
      <title>Re: Generate a dynamic table</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Generate-a-dynamic-table/m-p/1866059#M15970</link>
      <description>&lt;P&gt;Actually, I ended up forking qsQuickTableViewer and added a dynamic table option &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/mattiasthalen/qsQuickTableViewer/tree/Dynamic-Table-Option" target="_blank"&gt;https://github.com/mattiasthalen/qsQuickTableViewer/tree/Dynamic-Table-Option&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Dec 2021 14:12:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Generate-a-dynamic-table/m-p/1866059#M15970</guid>
      <dc:creator>mattias_thalen</dc:creator>
      <dc:date>2021-12-02T14:12:49Z</dc:date>
    </item>
    <item>
      <title>Re: Generate a dynamic table</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Generate-a-dynamic-table/m-p/2011541#M17684</link>
      <description>&lt;P&gt;Hi Mattias,&lt;/P&gt;
&lt;P&gt;Are you also able to drop measures in this version/fork?&lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2022 15:08:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Generate-a-dynamic-table/m-p/2011541#M17684</guid>
      <dc:creator>qlikster</dc:creator>
      <dc:date>2022-12-01T15:08:16Z</dc:date>
    </item>
    <item>
      <title>Re: Generate a dynamic table</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Generate-a-dynamic-table/m-p/2011705#M17687</link>
      <description>&lt;P&gt;I did a new project for it and just added support for measures. Don’t have any examples there on how to do it.&lt;/P&gt;
&lt;P&gt;But the basic idea is that you create a table in the model that lists the measure label, measure var name, one field each.&lt;/P&gt;
&lt;P&gt;When I have time I will add a better demo in the repository.&lt;/P&gt;
&lt;P&gt;Something I’m quite proud of is that I stumbled on the formula to extract the dimension/measure name. So the first dimension column always shows the first selected dimension, the second dimension column the second dimension, etc. And the same for measures. You also select the maximum number of selectable columns of each type.&lt;/P&gt;
&lt;P&gt;Have a look here, feel free to fork it and play around ☺️&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/mattiasthalen/DynamicTable" target="_blank" rel="noopener"&gt;DynamicTable&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2022 19:58:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Generate-a-dynamic-table/m-p/2011705#M17687</guid>
      <dc:creator>mattias-thalen</dc:creator>
      <dc:date>2022-12-01T19:58:41Z</dc:date>
    </item>
  </channel>
</rss>

