<?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: Qlik Table - View in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Qlik-Table-View/m-p/1638831#M63440</link>
    <description>&lt;P&gt;You can use calculated dimensions like:&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;=aggr(only({&amp;lt;F4={1}&amp;gt;}F2 &amp;amp; ' ' &amp;amp; F3), F2)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;</description>
    <pubDate>Wed, 23 Oct 2019 09:14:09 GMT</pubDate>
    <dc:creator>rwunderlich</dc:creator>
    <dc:date>2019-10-23T09:14:09Z</dc:date>
    <item>
      <title>Qlik Table - View</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Table-View/m-p/1638560#M63437</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;Can some one help me with the table format that I am looking for&amp;gt;?&lt;/P&gt;&lt;P&gt;Here below are the details&lt;/P&gt;&lt;P&gt;Below is the Table I have&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;BR /&gt;F1, F2, F3, F4, F5&lt;BR /&gt;abc, 123, 12-Oct, 1, sfdi&lt;BR /&gt;abc, 233, 13-Oct, 2, fd&lt;BR /&gt;abc, 453, 14-Oct, 2, fd&lt;BR /&gt;abc, 532, 15-Oct, 1, sdcf&lt;BR /&gt;sfsfk, 4332, 12-Oct, 1, as&lt;BR /&gt;dekfje, 32437, 13-Oct, 2, fd&lt;BR /&gt;dekfje, 432, 14-Oct, 1, fd&lt;BR /&gt;sfsfk, 423, 15-Oct, 1, aG&lt;BR /&gt;bbn, 53432, 14-Oct, 1, sdffg&lt;BR /&gt;bbn, 98909, 13-Oct, 1, sdffg&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;The resultant table should look like the one below. Any help on this would be highly appreciated.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Untitled.png" style="width: 838px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/22144i50A1B0136BC61356/image-dimensions/838x383?v=v2" width="838" height="383" role="button" title="Untitled.png" alt="Untitled.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>Fri, 02 Apr 2021 08:09:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Table-View/m-p/1638560#M63437</guid>
      <dc:creator>bhargavikatari</dc:creator>
      <dc:date>2021-04-02T08:09:10Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Table - View</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Table-View/m-p/1638638#M63438</link>
      <description>&lt;P&gt;I answered this on your other post as well. Please try to keep from making duplicate posts.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;LOAD 
    F1                              as FieldOne,
    Pick(F4, F2 &amp;amp; F3)               as FieldTwo,
    Pick(F1, F5)                    as FieldThree,
    Pick(F4, Null(), F2 &amp;amp; F3)       as FieldFour,
    Pick(F4, Null(), F5)            as FieldFive
INLINE [
F1, F2, F3, F4, F5
abc, 123, 12-Oct, 1, sfdi
abc, 233, 13-Oct, 2, fd
abc, 453, 14-Oct, 2, fd
abc, 532, 15-Oct, 1, sdcf
sfsfk, 4332, 12-Oct, 1, as
dekfje, 32437, 13-Oct, 2, fd
dekfje, 432, 14-Oct, 1, fd
sfsfk, 423, 15-Oct, 1, aG
bbn, 53432, 14-Oct, 1, sdffg
bbn, 98909, 13-Oct, 1, sdffg
];&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 01:53:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Table-View/m-p/1638638#M63438</guid>
      <dc:creator>treysmithdev</dc:creator>
      <dc:date>2019-10-23T01:53:38Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Table - View</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Table-View/m-p/1638670#M63439</link>
      <description>&lt;P&gt;LOAD F1,&lt;BR /&gt;if(F4=1, F2 &amp;amp; F3,'') as "F2&amp;amp;F3 (When F4 is 1)",&lt;BR /&gt;if(F4=1, F5,'') as "F5 (When F4 is 1)",&lt;BR /&gt;if(F4=2, F2 &amp;amp; F3,'') as "F2&amp;amp;F3 (When F4 is 2)",&lt;BR /&gt;if(F4=2, F5,'') as "F5 (When F4 is 2)";&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;F1, F2, F3, F4, F5&lt;BR /&gt;abc, 123, 12-Oct, 1, sfdi&lt;BR /&gt;abc, 233, 13-Oct, 2, fd&lt;BR /&gt;abc, 453, 14-Oct, 2, fd&lt;BR /&gt;abc, 532, 15-Oct, 1, sdcf&lt;BR /&gt;sfsfk, 4332, 12-Oct, 1, as&lt;BR /&gt;dekfje, 32437, 13-Oct, 2, fd&lt;BR /&gt;dekfje, 432, 14-Oct, 1, fd&lt;BR /&gt;sfsfk, 423, 15-Oct, 1, aG&lt;BR /&gt;bbn, 53432, 14-Oct, 1, sdffg&lt;BR /&gt;bbn, 98909, 13-Oct, 1, sdffg&lt;BR /&gt;];&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 04:51:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Table-View/m-p/1638670#M63439</guid>
      <dc:creator>Rojarao</dc:creator>
      <dc:date>2019-10-23T04:51:14Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Table - View</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Table-View/m-p/1638831#M63440</link>
      <description>&lt;P&gt;You can use calculated dimensions like:&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;=aggr(only({&amp;lt;F4={1}&amp;gt;}F2 &amp;amp; ' ' &amp;amp; F3), F2)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 09:14:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Table-View/m-p/1638831#M63440</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2019-10-23T09:14:09Z</dc:date>
    </item>
  </channel>
</rss>

