<?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 How to do Multiple Cross table based in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-do-Multiple-Cross-table-based/m-p/712821#M672462</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dear all,&lt;/P&gt;&lt;P&gt;Please find the attached application here i need cross table.&lt;/P&gt;&lt;P&gt;i want different dimession like Region, Sale,Items,FYmonth,Month,Quarter,Sales...like this way.&lt;/P&gt;&lt;P&gt;Based on my excel i tried but i can't able to do.PLEASE HELP ON THIS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Munna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Sep 2014 17:33:41 GMT</pubDate>
    <dc:creator>Srinivas</dc:creator>
    <dc:date>2014-09-04T17:33:41Z</dc:date>
    <item>
      <title>How to do Multiple Cross table based</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-do-Multiple-Cross-table-based/m-p/712821#M672462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dear all,&lt;/P&gt;&lt;P&gt;Please find the attached application here i need cross table.&lt;/P&gt;&lt;P&gt;i want different dimession like Region, Sale,Items,FYmonth,Month,Quarter,Sales...like this way.&lt;/P&gt;&lt;P&gt;Based on my excel i tried but i can't able to do.PLEASE HELP ON THIS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Munna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Sep 2014 17:33:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-do-Multiple-Cross-table-based/m-p/712821#M672462</guid>
      <dc:creator>Srinivas</dc:creator>
      <dc:date>2014-09-04T17:33:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to do Multiple Cross table based</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-do-Multiple-Cross-table-based/m-p/712822#M672463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi. i took a stab at it.&amp;nbsp; The main question is that your date periods cover different time periods with different granularity.&amp;nbsp; Current month has days, prior 12 months has months and quarterly summaries,&amp;nbsp; prior years only have years. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i just loaded all 'as is' so in a single list box you can pick a prior year and a day from the current month for example. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You'll need to think through how these values are calculated before trying to convert them to dates for example.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the script technique should help.&amp;nbsp; One of the things i did was convert the days to dates and leave the rest. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Sep 2014 18:52:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-do-Multiple-Cross-table-based/m-p/712822#M672463</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2014-09-04T18:52:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to do Multiple Cross table based</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-do-Multiple-Cross-table-based/m-p/712823#M672464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;not finished, but maybe helps:&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="65959" alt="QlikCommunity_Thread_132000_Pic1.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/65959_QlikCommunity_Thread_132000_Pic1.JPG.jpg" style="width: 620px; height: 419px;" /&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_14098716989344262" jivemacro_uid="_14098716989344262"&gt;
&lt;P&gt;tabInput:&lt;/P&gt;
&lt;P&gt;CrossTable (FieldNameTxt, FieldValue, 3)&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;LOAD * FROM [&lt;/SPAN&gt;&lt;A class="" data-containerid="-1" data-containertype="-1" data-objectid="123487" data-objecttype="13" href="http://community.qlik.com/servlet/JiveServlet/download/2061-132000-602142-123487/Daily1.xlsx"&gt;http://community.qlik.com/servlet/JiveServlet/download/602142-123487/Daily1.xlsx&lt;/A&gt;&lt;SPAN&gt;] (ooxml, embedded labels, table is Sheet1, filters(&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Remove(Row, RowCnd(CellValue, 3, StrCnd(contain, 'Total'))),Replace(1, top, StrCnd(null)),Replace(2, top, StrCnd(null))));&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Right Join&lt;/P&gt;
&lt;P&gt;LOAD Distinct&lt;/P&gt;
&lt;P&gt;&amp;nbsp; FieldNameTxt,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; If(WildMatch(PurgeChar(FieldNameTxt,'[]'), 'FY (??-??)', '?????.000000'),&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Pick(WildMatch(PurgeChar(FieldNameTxt,'[]'), 'FY (??-??)', '?????.000000'),&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Dual(PurgeChar(FieldNameTxt,'[]'), Mid(FieldNameTxt,6,2)),&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Date(PurgeChar(FieldNameTxt,'[]'))&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ),PurgeChar(FieldNameTxt,'[]')) as FieldName,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; If(WildMatch(PurgeChar(FieldNameTxt,'[]'), 'FY (??-??)', '?????.000000'),&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Pick(WildMatch(PurgeChar(FieldNameTxt,'[]'), 'FY (??-??)', '?????.000000'),&lt;/P&gt;
&lt;P&gt;&amp;nbsp; 'FY',&lt;/P&gt;
&lt;P&gt;&amp;nbsp; 'Date'&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ),'other') as Dimension&lt;/P&gt;
&lt;P&gt;Resident tabInput&lt;/P&gt;
&lt;P&gt;Where FieldNameTxt&amp;lt;&amp;gt;'Total';&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Sep 2014 23:00:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-do-Multiple-Cross-table-based/m-p/712823#M672464</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-09-04T23:00:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to do Multiple Cross table based</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-do-Multiple-Cross-table-based/m-p/712824#M672465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Attached is the QVW document. See if this is something you are looking for?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Sep 2014 23:34:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-do-Multiple-Cross-table-based/m-p/712824#M672465</guid>
      <dc:creator />
      <dc:date>2014-09-04T23:34:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to do Multiple Cross table based</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-do-Multiple-Cross-table-based/m-p/712825#M672466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Marco,&lt;/P&gt;&lt;P&gt;I really like your approach with a very compact usage of wildmatch/pick functions.&lt;/P&gt;&lt;P&gt;I am curious about why you use the 'right join towards the distinct load' in this case? Is this like a double-check to avoid any other fields in the final table? And if so, would you not rather like to see those fields that aren't considered yet?&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Sep 2014 04:49:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-do-Multiple-Cross-table-based/m-p/712825#M672466</guid>
      <dc:creator>danieloberbilli</dc:creator>
      <dc:date>2014-09-05T04:49:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to do Multiple Cross table based</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-do-Multiple-Cross-table-based/m-p/712826#M672467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hallo Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wanted to join the FieldName and Dimension fields to the tabInput table anyhow and so it's just been a nice opportunity to get rid of the crosstable rows created by the Total column of the source xls.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your reply&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gruß&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Sep 2014 23:43:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-do-Multiple-Cross-table-based/m-p/712826#M672467</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-09-05T23:43:09Z</dc:date>
    </item>
  </channel>
</rss>

