<?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: Qlik Long to Wide format columns in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Qlik-Long-to-Wide-format-columns/m-p/2529148#M107648</link>
    <description>&lt;P&gt;The tables could be joined together like it's described here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Design/The-Generic-Load/ba-p/1473470" target="_blank"&gt;The Generic Load - Qlik Community - 1473470&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 02 Sep 2025 09:07:45 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2025-09-02T09:07:45Z</dc:date>
    <item>
      <title>Qlik Long to Wide format columns</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Long-to-Wide-format-columns/m-p/2529143#M107646</link>
      <description>&lt;P&gt;Hello All,&amp;nbsp;&lt;BR /&gt;I'm working on one scenario In Qlik Cloud where I need to convrt long length quiz_question column to wide length.&lt;BR /&gt;10 questions are in one column , here I am trying to show each question as separate column, so that each user have one row only, each question column have an answer as well&lt;BR /&gt;I'm using Generic Load here&lt;/P&gt;&lt;P&gt;Generic LOAD&lt;BR /&gt;user_id,&lt;BR /&gt;Question,&lt;BR /&gt;Answer&lt;BR /&gt;Resident SurveyFinal;&lt;BR /&gt;&lt;BR /&gt;My problem here is each question is storing in separate table which I don't want, I want to see all questions in same table only and that too wide format only&lt;BR /&gt;My store command is like below and we use same store command for all apps&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;FOR vCount = 0 to NoOfTables()-1&lt;/P&gt;&lt;P&gt;LET vTableName = TableName($(vCount));&lt;/P&gt;&lt;P&gt;STORE $(vTableName) INTO [$(vSurvey)/$(vTableName).qvd] (qvd);&lt;/P&gt;&lt;P&gt;NEXT vCount&lt;BR /&gt;&lt;BR /&gt;Please help to store all questions in one table only not as multiple tables and not in multiple qvd's storing&lt;/P&gt;</description>
      <pubDate>Tue, 02 Sep 2025 08:18:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Long-to-Wide-format-columns/m-p/2529143#M107646</guid>
      <dc:creator>Mouni09</dc:creator>
      <dc:date>2025-09-02T08:18:33Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Long to Wide format columns</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Long-to-Wide-format-columns/m-p/2529148#M107648</link>
      <description>&lt;P&gt;The tables could be joined together like it's described here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Design/The-Generic-Load/ba-p/1473470" target="_blank"&gt;The Generic Load - Qlik Community - 1473470&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Sep 2025 09:07:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Long-to-Wide-format-columns/m-p/2529148#M107648</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2025-09-02T09:07:45Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Long to Wide format columns</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Long-to-Wide-format-columns/m-p/2529370#M107684</link>
      <description>&lt;P&gt;You can combine multiple tables in one:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;LET vFinalTable = 'MyFinalTable';

FOR vCount = 0 to NoOfTables()-1

LET vTableName = TableName($(vCount));

    $(vFinalTable):
    LOAD *
    RESIDENT $(vTableName)
    ;

NEXT vCount

STORE $(vFinalTable) INTO [$(vSurvey)/$(vFinalTable).qvd] (qvd);
STORE $(vFinalTable) INTO [$(vSurvey)/$(vFinalTable).parquet] (parquet, compression is brotli);

DROP TABLE $(vFinalTable);&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 03 Sep 2025 15:52:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Long-to-Wide-format-columns/m-p/2529370#M107684</guid>
      <dc:creator>adilio_silva</dc:creator>
      <dc:date>2025-09-03T15:52:35Z</dc:date>
    </item>
  </channel>
</rss>

