<?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 Manually Filed assignment to Numeric Columns (Expressions) in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Manually-Filed-assignment-to-Numeric-Columns-Expressions/m-p/1693613#M53053</link>
    <description>&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;I have a table Contains columns(ID,Opening,Need Identification,Product Presentation) etc. as attached in screenshot&lt;/P&gt;&lt;P&gt;Now, I want to map some external filed called Status to that columns and show sum.&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;P&gt;Expected output is attached here&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
    <pubDate>Mon, 20 Dec 2021 21:08:46 GMT</pubDate>
    <dc:creator>nayanpatel</dc:creator>
    <dc:date>2021-12-20T21:08:46Z</dc:date>
    <item>
      <title>Manually Filed assignment to Numeric Columns (Expressions)</title>
      <link>https://community.qlik.com/t5/App-Development/Manually-Filed-assignment-to-Numeric-Columns-Expressions/m-p/1693613#M53053</link>
      <description>&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;I have a table Contains columns(ID,Opening,Need Identification,Product Presentation) etc. as attached in screenshot&lt;/P&gt;&lt;P&gt;Now, I want to map some external filed called Status to that columns and show sum.&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;P&gt;Expected output is attached here&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Dec 2021 21:08:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Manually-Filed-assignment-to-Numeric-Columns-Expressions/m-p/1693613#M53053</guid>
      <dc:creator>nayanpatel</dc:creator>
      <dc:date>2021-12-20T21:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: Manually Filed assignment to Numeric Columns (Expressions)</title>
      <link>https://community.qlik.com/t5/App-Development/Manually-Filed-assignment-to-Numeric-Columns-Expressions/m-p/1693646#M53055</link>
      <description>&lt;P&gt;Hello&amp;nbsp;Nayan&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;'Opening' as Status,&lt;/P&gt;&lt;P&gt;Id,&lt;/P&gt;&lt;P&gt;##_opening as Total&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;from xyz;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;'&lt;SPAN&gt;Need Identification&lt;/SPAN&gt;' as Status,&lt;/P&gt;&lt;P&gt;Id,&lt;/P&gt;&lt;P&gt;##&lt;SPAN&gt;Need_Identification&amp;nbsp;&lt;/SPAN&gt;as Total&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;from xyz;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;'&lt;SPAN&gt;Product Presentation&lt;/SPAN&gt;' as Status,&lt;/P&gt;&lt;P&gt;Id,&lt;/P&gt;&lt;P&gt;##&lt;SPAN&gt;Product_Presentation&amp;nbsp;&lt;/SPAN&gt;as Total&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;from xyz;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;You can plot them in a table and you have your expected output.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Sourabh&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Apr 2020 12:01:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Manually-Filed-assignment-to-Numeric-Columns-Expressions/m-p/1693646#M53055</guid>
      <dc:creator>sourabh808</dc:creator>
      <dc:date>2020-04-15T12:01:45Z</dc:date>
    </item>
    <item>
      <title>Re: Manually Filed assignment to Numeric Columns (Expressions)</title>
      <link>https://community.qlik.com/t5/App-Development/Manually-Filed-assignment-to-Numeric-Columns-Expressions/m-p/1693647#M53056</link>
      <description>&lt;P&gt;attached&lt;/P&gt;&lt;P&gt;you can use ValueList :&lt;/P&gt;&lt;P&gt;Status :&lt;/P&gt;&lt;LI-CODE lang="python"&gt;=ValueList('OPENNING','NEED IDENTIFICATION','PRODUCT PRESENTATION','NEGOTIATION')&lt;/LI-CODE&gt;&lt;P&gt;Total:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;=If(ValueList('OPENNING','NEED IDENTIFICATION','PRODUCT PRESENTATION','NEGOTIATION')= 'OPENNING',
sum([##_OPENING]),
if(ValueList('OPENNING','NEED IDENTIFICATION','PRODUCT PRESENTATION','NEGOTIATION')= 'NEED IDENTIFICATION',
sum([##_NEED IDENTIFICATION]),
if(ValueList('OPENNING','NEED IDENTIFICATION','PRODUCT PRESENTATION','NEGOTIATION')= 'PRODUCT PRESENTATION',
sum([##_PRODUCT PRESENTATION]),
if(ValueList('OPENNING','NEED IDENTIFICATION','PRODUCT PRESENTATION','NEGOTIATION')= 'NEGOTIATION',sum([##_NEGOTIATION])
))))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;output:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/31850i341F9DAE7DBEED66/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Apr 2020 12:02:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Manually-Filed-assignment-to-Numeric-Columns-Expressions/m-p/1693647#M53056</guid>
      <dc:creator>Taoufiq_Zarra</dc:creator>
      <dc:date>2020-04-15T12:02:12Z</dc:date>
    </item>
    <item>
      <title>Re: Manually Filed assignment to Numeric Columns (Expressions)</title>
      <link>https://community.qlik.com/t5/App-Development/Manually-Filed-assignment-to-Numeric-Columns-Expressions/m-p/1693666#M53059</link>
      <description>&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Wed, 15 Apr 2020 12:45:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Manually-Filed-assignment-to-Numeric-Columns-Expressions/m-p/1693666#M53059</guid>
      <dc:creator>nayanpatel</dc:creator>
      <dc:date>2020-04-15T12:45:18Z</dc:date>
    </item>
  </channel>
</rss>

