<?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: CrossTab large Dataset multiple columbs in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/CrossTab-large-Dataset-multiple-columbs/m-p/1753469#M718822</link>
    <description>&lt;P&gt;This is awesome,exacly what I need.&lt;/P&gt;&lt;P&gt;So do I have to repeat the queries for the remaining Array Subsets. I have up to 15.&lt;/P&gt;&lt;P&gt;I think it will work but wanted to know if there is a simpler way than that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 18 Oct 2020 04:38:28 GMT</pubDate>
    <dc:creator>ruzvmun</dc:creator>
    <dc:date>2020-10-18T04:38:28Z</dc:date>
    <item>
      <title>CrossTab large Dataset multiple columbs</title>
      <link>https://community.qlik.com/t5/QlikView/CrossTab-large-Dataset-multiple-columbs/m-p/1753465#M718820</link>
      <description>&lt;P&gt;Hi Guys continuously learning and seeing the Value of QV,&lt;/P&gt;&lt;P&gt;I just realized that CrossTable() could be a solution to my problem.&lt;/P&gt;&lt;P&gt;I would like to create a crosstable script that uses data from 1+ columns. The data resides in a large QVD file and I would like to select a sub-dataset based on a group of fields.&lt;/P&gt;&lt;P&gt;I have attached input data and output data. This one uses just the 2 highlighted columns but imagine there are more in that category.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can someone please assist me,&lt;/P&gt;&lt;P&gt;Please let me know if I need to clarify something.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 17:57:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/CrossTab-large-Dataset-multiple-columbs/m-p/1753465#M718820</guid>
      <dc:creator>ruzvmun</dc:creator>
      <dc:date>2024-11-16T17:57:27Z</dc:date>
    </item>
    <item>
      <title>Re: CrossTab large Dataset multiple columbs</title>
      <link>https://community.qlik.com/t5/QlikView/CrossTab-large-Dataset-multiple-columbs/m-p/1753467#M718821</link>
      <description>&lt;P&gt;This is not really a crosstable scenario.&amp;nbsp; It is combining the data in another way using an outer join.&lt;/P&gt;&lt;P&gt;Here is the script I used to get the result.&lt;/P&gt;&lt;P&gt;LOAD Emp_ID,&lt;BR /&gt;Emp_Name,&lt;BR /&gt;ARRAY_06_Emp_LEVEL as Array_Level,&lt;BR /&gt;// ARRAY_07_Emp_LEVEL,&lt;BR /&gt;ARRAY_06_Emp_Code as Array_EmpCode&lt;BR /&gt;// ARRAY_07_Emp_Code&lt;BR /&gt;FROM&lt;BR /&gt;[C:\Users\axn\Documents\Community\Sample_CT_Data.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is Input_Data);&lt;/P&gt;&lt;P&gt;Join&lt;BR /&gt;LOAD Emp_ID,&lt;BR /&gt;Emp_Name,&lt;BR /&gt;// ARRAY_06_Emp_LEVEL,&lt;BR /&gt;ARRAY_07_Emp_LEVEL as Array_Level,&lt;BR /&gt;// ARRAY_06_Emp_Code,&lt;BR /&gt;ARRAY_07_Emp_Code as Array_EmpCode&lt;BR /&gt;FROM&lt;BR /&gt;[C:\Users\axn\Documents\Community\Sample_CT_Data.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is Input_Data);&lt;/P&gt;</description>
      <pubDate>Sun, 18 Oct 2020 03:33:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/CrossTab-large-Dataset-multiple-columbs/m-p/1753467#M718821</guid>
      <dc:creator>Lisa_P</dc:creator>
      <dc:date>2020-10-18T03:33:22Z</dc:date>
    </item>
    <item>
      <title>Re: CrossTab large Dataset multiple columbs</title>
      <link>https://community.qlik.com/t5/QlikView/CrossTab-large-Dataset-multiple-columbs/m-p/1753469#M718822</link>
      <description>&lt;P&gt;This is awesome,exacly what I need.&lt;/P&gt;&lt;P&gt;So do I have to repeat the queries for the remaining Array Subsets. I have up to 15.&lt;/P&gt;&lt;P&gt;I think it will work but wanted to know if there is a simpler way than that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 18 Oct 2020 04:38:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/CrossTab-large-Dataset-multiple-columbs/m-p/1753469#M718822</guid>
      <dc:creator>ruzvmun</dc:creator>
      <dc:date>2020-10-18T04:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: CrossTab large Dataset multiple columbs</title>
      <link>https://community.qlik.com/t5/QlikView/CrossTab-large-Dataset-multiple-columbs/m-p/1753470#M718823</link>
      <description>&lt;P&gt;To simplify try to loop your 15 iterations.&lt;BR /&gt;Something like this :&lt;/P&gt;&lt;P&gt;Emp:&lt;BR /&gt;LOAD Emp_ID,&amp;nbsp;Emp_Name&lt;BR /&gt;FROM&amp;nbsp;[Data];&lt;/P&gt;&lt;P&gt;For each i in '01','02','03',..., '14', '15'&lt;BR /&gt;Left join (Emp)&lt;BR /&gt;LOAD&lt;BR /&gt;Emp_ID,&lt;BR /&gt;Emp_Name,&lt;BR /&gt;ARRAY_$(i)_Emp_LEVEL as Array_Level,&lt;BR /&gt;ARRAY_$(i)_Emp_Code as Array_EmpCode&lt;BR /&gt;FROM&amp;nbsp;[Data];&lt;BR /&gt;Next i;&lt;/P&gt;&lt;P&gt;You can of cource choose a normal for loop as well, but make sure that your i formats as '00'.&lt;/P&gt;</description>
      <pubDate>Sun, 18 Oct 2020 05:58:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/CrossTab-large-Dataset-multiple-columbs/m-p/1753470#M718823</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2020-10-18T05:58:32Z</dc:date>
    </item>
    <item>
      <title>Re: CrossTab large Dataset multiple columbs</title>
      <link>https://community.qlik.com/t5/QlikView/CrossTab-large-Dataset-multiple-columbs/m-p/1753473#M718824</link>
      <description>&lt;P&gt;Thanks Vegar, I am sure this will work. however I am not getting values for the loops. I think I am not scripting correctly somewhere.&lt;/P&gt;&lt;P&gt;I have attached a screenshot. Is there any reason the text turns black after the loop macro?&lt;/P&gt;&lt;P&gt;Arnold&lt;/P&gt;</description>
      <pubDate>Sun, 18 Oct 2020 06:52:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/CrossTab-large-Dataset-multiple-columbs/m-p/1753473#M718824</guid>
      <dc:creator>ruzvmun</dc:creator>
      <dc:date>2020-10-18T06:52:05Z</dc:date>
    </item>
    <item>
      <title>Re: CrossTab large Dataset multiple columbs</title>
      <link>https://community.qlik.com/t5/QlikView/CrossTab-large-Dataset-multiple-columbs/m-p/1753475#M718825</link>
      <description>&lt;P&gt;I notice that you have white spaces in some of your field names.&lt;/P&gt;&lt;P&gt;Try wrapping [] around like this.&amp;nbsp;&lt;/P&gt;&lt;P&gt;[ARRAY $(i) AGENT STATUS]&amp;nbsp;&amp;nbsp;as Status&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 18 Oct 2020 08:04:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/CrossTab-large-Dataset-multiple-columbs/m-p/1753475#M718825</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2020-10-18T08:04:16Z</dc:date>
    </item>
    <item>
      <title>Re: CrossTab large Dataset multiple columbs</title>
      <link>https://community.qlik.com/t5/QlikView/CrossTab-large-Dataset-multiple-columbs/m-p/1753538#M718826</link>
      <description>&lt;P&gt;It worked once I changed 'Outer Join' to 'Join'. This is probably because of the structure of my Data.&lt;/P&gt;&lt;P&gt;Will confirm this by validating CRM App..&lt;/P&gt;&lt;P&gt;This has been awesome, always&amp;nbsp; great to learn new things&lt;/P&gt;&lt;P&gt;Thank you Vegar and Lisa &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Oct 2020 00:06:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/CrossTab-large-Dataset-multiple-columbs/m-p/1753538#M718826</guid>
      <dc:creator>ruzvmun</dc:creator>
      <dc:date>2020-10-19T00:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: CrossTab large Dataset multiple columbs</title>
      <link>https://community.qlik.com/t5/QlikView/CrossTab-large-Dataset-multiple-columbs/m-p/1753539#M718827</link>
      <description>&lt;P&gt;Now I need to create something similar to an 'Org Chart' using this data. Will do some research.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Oct 2020 00:09:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/CrossTab-large-Dataset-multiple-columbs/m-p/1753539#M718827</guid>
      <dc:creator>ruzvmun</dc:creator>
      <dc:date>2020-10-19T00:09:52Z</dc:date>
    </item>
  </channel>
</rss>

