<?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 Transforming data into particular view in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Transforming-data-into-particular-view/m-p/2115964#M91056</link>
    <description>&lt;P&gt;How to transfer this data with below view on Qlik dashboard?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Joy_23_0-1694513284897.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/116091i19E20B947D9C77C8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Joy_23_0-1694513284897.png" alt="Joy_23_0-1694513284897.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Joy_23_1-1694519695333.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/116113i9C635B8C37414A00/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Joy_23_1-1694519695333.png" alt="Joy_23_1-1694519695333.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 12 Sep 2023 11:56:14 GMT</pubDate>
    <dc:creator>Joy_23</dc:creator>
    <dc:date>2023-09-12T11:56:14Z</dc:date>
    <item>
      <title>Transforming data into particular view</title>
      <link>https://community.qlik.com/t5/App-Development/Transforming-data-into-particular-view/m-p/2115964#M91056</link>
      <description>&lt;P&gt;How to transfer this data with below view on Qlik dashboard?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Joy_23_0-1694513284897.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/116091i19E20B947D9C77C8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Joy_23_0-1694513284897.png" alt="Joy_23_0-1694513284897.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Joy_23_1-1694519695333.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/116113i9C635B8C37414A00/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Joy_23_1-1694519695333.png" alt="Joy_23_1-1694519695333.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2023 11:56:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Transforming-data-into-particular-view/m-p/2115964#M91056</guid>
      <dc:creator>Joy_23</dc:creator>
      <dc:date>2023-09-12T11:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: Transforming data into particular view</title>
      <link>https://community.qlik.com/t5/App-Development/Transforming-data-into-particular-view/m-p/2116387#M91099</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;
&lt;P&gt;below the logic step by step&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1 : load data as it is&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2 : replicate field Region when missing&lt;/P&gt;
&lt;P&gt;3 : croostable data&amp;nbsp;&lt;/P&gt;
&lt;P&gt;4 create new fied for Globa et South named Type_Region and create subfield Type for A B C .&amp;nbsp;&lt;/P&gt;
&lt;P&gt;:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;LOAD * INLINE &lt;BR /&gt;[&lt;BR /&gt;Region,Country,A_Global,B_Global,C_Global,A_South,B_South,C_South&lt;BR /&gt;Asia,India,12,42,12,10,9,8&lt;BR /&gt;,Srilanka,12,32,12,23,3,5&lt;BR /&gt;,Japan,12,1,43,23,22,12&lt;BR /&gt;](delimiter is ',');&lt;/P&gt;
&lt;P&gt;NoConcatenate&lt;BR /&gt;Table1: &lt;BR /&gt;load &lt;BR /&gt;if(len(Region)&amp;gt;0,Region,peek('Region')) as Region,&lt;BR /&gt;Country , A_Global,B_Global,C_Global,A_South,B_South,C_South&lt;BR /&gt;resident Table; drop table Table;&lt;/P&gt;
&lt;P&gt;Table2:&lt;BR /&gt;crosstable ( Type,Amount,2)&lt;BR /&gt;load* resident Table1; drop table Table1;&lt;/P&gt;
&lt;P&gt;noconcatenate&lt;BR /&gt;Table3:&lt;BR /&gt;load &lt;BR /&gt;Region,&lt;BR /&gt;Country,&lt;BR /&gt;subfield(Type,'_',1) as Type,&lt;BR /&gt;subfield(Type,'_',2) as Type_Region,&lt;BR /&gt;Amount&lt;BR /&gt;resident Table2 ; drop table Table2;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Resulting Table :&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="brunobertels_0-1694595209896.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/116187iAC012914FA66C01E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="brunobertels_0-1694595209896.png" alt="brunobertels_0-1694595209896.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;hope it helps&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Sep 2023 08:53:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Transforming-data-into-particular-view/m-p/2116387#M91099</guid>
      <dc:creator>brunobertels</dc:creator>
      <dc:date>2023-09-13T08:53:42Z</dc:date>
    </item>
  </channel>
</rss>

