<?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: Crosstabling multiple rows  challenge in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Crosstabling-multiple-rows-challenge/m-p/1537570#M38795</link>
    <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/49570"&gt;@mikaelsc&lt;/a&gt;&amp;nbsp;it worked like a charm&lt;/P&gt;&lt;P&gt;Regards, Marcel.&lt;/P&gt;</description>
    <pubDate>Thu, 31 Jan 2019 06:34:57 GMT</pubDate>
    <dc:creator>marcel_olmo</dc:creator>
    <dc:date>2019-01-31T06:34:57Z</dc:date>
    <item>
      <title>Crosstabling multiple rows  challenge</title>
      <link>https://community.qlik.com/t5/App-Development/Crosstabling-multiple-rows-challenge/m-p/1537415#M38774</link>
      <description>&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;I have a table like this :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="cross1.png" style="width: 402px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/4869i5B209A4D33A5EA1A/image-size/large?v=v2&amp;amp;px=999" role="button" title="cross1.png" alt="cross1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;And I'd like to have this desired ouput :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="cross2.png" style="width: 396px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/4870i0721DF1F99E07AC3/image-size/large?v=v2&amp;amp;px=999" role="button" title="cross2.png" alt="cross2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;How could I do it?&lt;/P&gt;&lt;P&gt;I've attached the sample in excel if someone could try it.&lt;/P&gt;&lt;P&gt;Best regards, Marcel.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 06:43:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Crosstabling-multiple-rows-challenge/m-p/1537415#M38774</guid>
      <dc:creator>marcel_olmo</dc:creator>
      <dc:date>2024-11-16T06:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: Crosstabling multiple rows  challenge</title>
      <link>https://community.qlik.com/t5/App-Development/Crosstabling-multiple-rows-challenge/m-p/1537425#M38775</link>
      <description>&lt;P&gt;From what I see, QlikSense automatically loads the data in the desired format. I see and option in OutputDesiredData which has the desired output.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="QS1.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/4871i10245BD23E7145C4/image-size/large?v=v2&amp;amp;px=999" role="button" title="QS1.png" alt="QS1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This is my first day with QlikSense, I hope I am making sense&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jan 2019 18:34:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Crosstabling-multiple-rows-challenge/m-p/1537425#M38775</guid>
      <dc:creator>shivakumarthoutam</dc:creator>
      <dc:date>2019-01-30T18:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: Crosstabling multiple rows  challenge</title>
      <link>https://community.qlik.com/t5/App-Development/Crosstabling-multiple-rows-challenge/m-p/1537430#M38777</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/61790"&gt;@shivakumarthoutam&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;this is an excel example I've prepared to show you my need. I only have the first sheet, the second sheet was made by me manually.&lt;/P&gt;&lt;P&gt;The point here is to load sheet1 "Origin Data" and transform it into the "desiredoutputData" via Qlik Sense.&lt;/P&gt;&lt;P&gt;Regards, Marcel.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jan 2019 18:47:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Crosstabling-multiple-rows-challenge/m-p/1537430#M38777</guid>
      <dc:creator>marcel_olmo</dc:creator>
      <dc:date>2019-01-30T18:47:31Z</dc:date>
    </item>
    <item>
      <title>Re: Crosstabling multiple rows  challenge</title>
      <link>https://community.qlik.com/t5/App-Development/Crosstabling-multiple-rows-challenge/m-p/1537461#M38783</link>
      <description>why would someone even give you such a horrible datasource... [tempOriginData]: LOAD [A], [B], [C], [D] FROM [lib://Downloads/SampleCrossData.xlsx] (ooxml, no labels, table is OriginData) ; tempcombinations: crosstable(combination,fieldvalue,1) load [A] as fieldname, [B] as comb1, [C] as comb2, [D] as comb3 resident tempOriginData where wildmatch([A],'field*'); combinations: load Distinct combination Resident tempcombinations; left join(combinations) load combination, fieldvalue as Field1 resident tempcombinations where fieldname = 'Field1'; left join(combinations) load combination, fieldvalue as Field2 resident tempcombinations where fieldname = 'Field2'; left join(combinations) load combination, fieldvalue as Field3 resident tempcombinations where fieldname = 'Field3'; tempValues: crosstable(combination, Value,1) load [A] as date, [B] as comb1, [C] as comb2, [D] as comb3 resident tempOriginData where not wildmatch([A],'field*','*date'); left join (combinations) load * resident tempValues; drop table tempOriginData,tempcombinations,tempValues;</description>
      <pubDate>Wed, 30 Jan 2019 20:29:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Crosstabling-multiple-rows-challenge/m-p/1537461#M38783</guid>
      <dc:creator>mikaelsc</dc:creator>
      <dc:date>2019-01-30T20:29:11Z</dc:date>
    </item>
    <item>
      <title>Re: Crosstabling multiple rows  challenge</title>
      <link>https://community.qlik.com/t5/App-Development/Crosstabling-multiple-rows-challenge/m-p/1537570#M38795</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/49570"&gt;@mikaelsc&lt;/a&gt;&amp;nbsp;it worked like a charm&lt;/P&gt;&lt;P&gt;Regards, Marcel.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jan 2019 06:34:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Crosstabling-multiple-rows-challenge/m-p/1537570#M38795</guid>
      <dc:creator>marcel_olmo</dc:creator>
      <dc:date>2019-01-31T06:34:57Z</dc:date>
    </item>
  </channel>
</rss>

