<?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 Converting columns to rows with multiple fields in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Converting-columns-to-rows-with-multiple-fields/m-p/2518572#M106121</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My input table has Resource types, companies and week numbers showing allocation of resources. I need to load the data so that I can chart by week the number of resources by type and company. I've tried using Crosstable but as I have more than one column I need to include I'm not getting the results I need.&lt;/P&gt;&lt;P&gt;The table:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="orangebloss_0-1747900608779.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/180664i90692F2FE1441E3E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="orangebloss_0-1747900608779.png" alt="orangebloss_0-1747900608779.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The required result:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="orangebloss_1-1747900640593.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/180665iBE844E79036D20F7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="orangebloss_1-1747900640593.png" alt="orangebloss_1-1747900640593.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 22 May 2025 07:57:34 GMT</pubDate>
    <dc:creator>orangebloss</dc:creator>
    <dc:date>2025-05-22T07:57:34Z</dc:date>
    <item>
      <title>Converting columns to rows with multiple fields</title>
      <link>https://community.qlik.com/t5/App-Development/Converting-columns-to-rows-with-multiple-fields/m-p/2518572#M106121</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My input table has Resource types, companies and week numbers showing allocation of resources. I need to load the data so that I can chart by week the number of resources by type and company. I've tried using Crosstable but as I have more than one column I need to include I'm not getting the results I need.&lt;/P&gt;&lt;P&gt;The table:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="orangebloss_0-1747900608779.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/180664i90692F2FE1441E3E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="orangebloss_0-1747900608779.png" alt="orangebloss_0-1747900608779.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The required result:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="orangebloss_1-1747900640593.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/180665iBE844E79036D20F7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="orangebloss_1-1747900640593.png" alt="orangebloss_1-1747900640593.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2025 07:57:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Converting-columns-to-rows-with-multiple-fields/m-p/2518572#M106121</guid>
      <dc:creator>orangebloss</dc:creator>
      <dc:date>2025-05-22T07:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: Converting columns to rows with multiple fields</title>
      <link>https://community.qlik.com/t5/App-Development/Converting-columns-to-rows-with-multiple-fields/m-p/2518581#M106124</link>
      <description>&lt;P&gt;Have you tried to follow "Example 3" in the &lt;A href="https://help.qlik.com/en-US/cloud-services/Subsystems/Hub/Content/Sense_Hub/Scripting/ScriptPrefixes/crosstable.htm" target="_self"&gt;documentation for crosstable&lt;/A&gt;?&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2025 08:54:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Converting-columns-to-rows-with-multiple-fields/m-p/2518581#M106124</guid>
      <dc:creator>henrikalmen</dc:creator>
      <dc:date>2025-05-22T08:54:04Z</dc:date>
    </item>
    <item>
      <title>Re: Converting columns to rows with multiple fields</title>
      <link>https://community.qlik.com/t5/App-Development/Converting-columns-to-rows-with-multiple-fields/m-p/2518592#M106126</link>
      <description>&lt;P&gt;Hi, you can still use crosstable to achieve the desired result, you just need to leave the first two column.&lt;BR /&gt;here is the script that would work for you:&lt;/P&gt;&lt;DIV&gt;&lt;STRONG&gt;CrossTable(Week, Allocation, 2) &lt;/STRONG&gt;// here 2 represent the no of column you want to skip.&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Sayed Mannan Ahmad&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2025 09:16:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Converting-columns-to-rows-with-multiple-fields/m-p/2518592#M106126</guid>
      <dc:creator>Sayed_Mannan</dc:creator>
      <dc:date>2025-05-22T09:16:28Z</dc:date>
    </item>
  </channel>
</rss>

