<?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: Field Display question in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Field-Display-question/m-p/602296#M222676</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is problem doing it this way since in the table chart i want to show project that has multple leader in same line instead of 3 lines. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Feb 2014 22:37:32 GMT</pubDate>
    <dc:creator>userid128223</dc:creator>
    <dc:date>2014-02-18T22:37:32Z</dc:date>
    <item>
      <title>Field Display question</title>
      <link>https://community.qlik.com/t5/QlikView/Field-Display-question/m-p/602293#M222673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have field like this in excel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="92"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="20" width="92"&gt;Leader&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;YY&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;TT&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;JJ&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;YY, TT , JJ&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now in my dashboard, I have Inline table that matches each acronmyn to a name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Leader, Leader Name&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; YY, Ying Yang&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TT, Tim Tang&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; JJ, Jim Jay&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So now when i display on dashboard Ying Yang it corresponds to fields that are related to YY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However if leaders are more then 1 like the last field YY, TT, JJ. this command is not understood by QlikView. How can you make QV interpret as 3 seperate names even thought it was entered in same field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Feb 2014 22:22:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-Display-question/m-p/602293#M222673</guid>
      <dc:creator>userid128223</dc:creator>
      <dc:date>2014-02-18T22:22:54Z</dc:date>
    </item>
    <item>
      <title>Re: Field Display question</title>
      <link>https://community.qlik.com/t5/QlikView/Field-Display-question/m-p/602294#M222674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the subfield command and specify a delimiter:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Subfield(Leader, ',') as NewLeaderField&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Feb 2014 22:25:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-Display-question/m-p/602294#M222674</guid>
      <dc:creator>jpapador</dc:creator>
      <dc:date>2014-02-18T22:25:40Z</dc:date>
    </item>
    <item>
      <title>Re: Field Display question</title>
      <link>https://community.qlik.com/t5/QlikView/Field-Display-question/m-p/602295#M222675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Either load your first table in using subfield, i.e. generate 3 records from your last field value:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; trim(subfield(Leader, ', ')) as Leader,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or try mapping your inline values:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MAP:&lt;/P&gt;&lt;P&gt;MAPPING LOAD * INLINE [&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; Leader, Leader Name&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; YY, Ying Yang&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TT, Tim Tang&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; JJ, Jim Jay&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mapsubstring('MAP', Leader) as Leader,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will keep your three leader names in one field value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Feb 2014 22:29:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-Display-question/m-p/602295#M222675</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2014-02-18T22:29:28Z</dc:date>
    </item>
    <item>
      <title>Re: Field Display question</title>
      <link>https://community.qlik.com/t5/QlikView/Field-Display-question/m-p/602296#M222676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is problem doing it this way since in the table chart i want to show project that has multple leader in same line instead of 3 lines. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Feb 2014 22:37:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-Display-question/m-p/602296#M222676</guid>
      <dc:creator>userid128223</dc:creator>
      <dc:date>2014-02-18T22:37:32Z</dc:date>
    </item>
    <item>
      <title>Re: Field Display question</title>
      <link>https://community.qlik.com/t5/QlikView/Field-Display-question/m-p/602297#M222677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, that's why I suggested the mapping approach?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Feb 2014 23:37:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-Display-question/m-p/602297#M222677</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2014-02-18T23:37:09Z</dc:date>
    </item>
  </channel>
</rss>

