<?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 How to add a grouped value field to the same field in script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239297#M866456</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To better explain my question, I will use an example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table: Events&lt;/P&gt;&lt;P&gt;Field: ItemCode&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 10pt;"&gt;Values: A, B, C, D&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Field: Expenses&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Values: 1, 2, 3, 4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to add 'ALL' as an ItemCode and the sum of A,B,C,D expenses as it's Expenses value.&lt;/P&gt;&lt;P&gt;So my result would be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field: ItemCode&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Values: A, B, C, D, ALL&lt;/P&gt;&lt;P&gt;Field: Expenses&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Values: 1, 2, 3, 4, 10&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What would the script look like for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ben &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>benvatvandata</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>How to add a grouped value field to the same field in script</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239297#M866456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To better explain my question, I will use an example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table: Events&lt;/P&gt;&lt;P&gt;Field: ItemCode&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 10pt;"&gt;Values: A, B, C, D&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Field: Expenses&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Values: 1, 2, 3, 4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to add 'ALL' as an ItemCode and the sum of A,B,C,D expenses as it's Expenses value.&lt;/P&gt;&lt;P&gt;So my result would be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field: ItemCode&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Values: A, B, C, D, ALL&lt;/P&gt;&lt;P&gt;Field: Expenses&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Values: 1, 2, 3, 4, 10&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What would the script look like for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ben &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239297#M866456</guid>
      <dc:creator>benvatvandata</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a grouped value field to the same field in script</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239298#M866457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table:&lt;/P&gt;&lt;P&gt;LOAD ItemCode, Expenses FROM ... ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE (Table)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD 'ALL' as ItemCode, sum(Expenses) as Expenses RESIDENT Table;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Dec 2016 17:10:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239298#M866457</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-12-09T17:10:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a grouped value field to the same field in script</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239299#M866459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is what I'm looking for, but I forgot to mention that there are more than just those ItemCodes, Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ItemCode: A, B, C, D, E, F&lt;/P&gt;&lt;P&gt;Values: 1, 2, 3, 4, 5, 6&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want 'ALL' to just consist of A, B, C, D; So I want:&lt;/P&gt;&lt;P&gt;ItemCode: A, B, C, D, ALL, E, F&lt;/P&gt;&lt;P&gt;Values: 1, 2, 3, 4, 10, 5, 6&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Dec 2016 17:18:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239299#M866459</guid>
      <dc:creator>benvatvandata</dc:creator>
      <dc:date>2016-12-09T17:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a grouped value field to the same field in script</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239300#M866462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Change the second load to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD 'ALL' as ItemCode, sum(Expenses) as Expenses RESIDENT Table &lt;STRONG&gt;WHERE Match(ItemCode, 'A','B','C','D');&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Dec 2016 17:22:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239300#M866462</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-12-09T17:22:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a grouped value field to the same field in script</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239301#M866463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This works for my example, but my example may have been too simple - let me go into further detail:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have other fields that this field is being filtered on, for example my set analysis is:&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;sum({&amp;lt;&lt;/TD&gt;&lt;TD&gt;MTGStatus = {'ASSIGNED','CLOSED','CLOSED BY FINANCE',&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'LOGISTICS CONFIRMED','PENDING/REP','PENDING/SPEAKER','PENDING/VENUE',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'PROGRAM OCCURRED','RECONCILED', 'REQUESTED BY REP'},&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MTGDate = {"&amp;gt;=$(=yearstart(today()))"}&amp;nbsp; &amp;gt;} Expenses)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And the first Dimension is Division - my 2nd Dimension is ItemCode&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These fields are all in the same table, can this be done?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Dec 2016 17:53:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239301#M866463</guid>
      <dc:creator>benvatvandata</dc:creator>
      <dc:date>2016-12-09T17:53:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a grouped value field to the same field in script</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239302#M866464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;why are you looking for a script solution?&lt;/P&gt;&lt;P&gt;Maybe you just could use a total label to get a table like this (eventually restricting the sum function with your existing set expression)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QlikCommunity_Thread_242907_Pic1.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/146257_QlikCommunity_Thread_242907_Pic1.JPG" style="height: auto; width: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Dec 2016 23:00:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239302#M866464</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2016-12-09T23:00:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a grouped value field to the same field in script</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239303#M866465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have bar chart with grouped style ('stacked' would do exactly what I want, but it is desired to be grouped style),&lt;SPAN style="font-size: 13.3333px;"&gt; &lt;/SPAN&gt;in Qlik Sense, and I'm trying to display a total sum for each group in addition to showing the other bars grouped with it. In QlikSense it will only allow one expression with 2 dimensions. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Dec 2016 23:20:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239303#M866465</guid>
      <dc:creator>benvatvandata</dc:creator>
      <dc:date>2016-12-09T23:20:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a grouped value field to the same field in script</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239304#M866466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perhaps you should create a new table with a new ReportItemCode field and use that field as chart dimension&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NewTable:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FieldValue('ItemCode', RecNo()) as ReportItemCode,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FieldValue('ItemCode', RecNo()) as ItemCode&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;AutoGenerate FieldValueCount('ItemCode')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;CONCATENATE (NewTable)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;LOAD * INLINE [&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;ReportItemCode, ItemCode&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;ALL, A&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;ALL, B&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;ALL, C&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;ALL, D&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;];&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Dec 2016 12:39:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239304#M866466</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-12-10T12:39:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a grouped value field to the same field in script</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239305#M866467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;For some reason I'm getting an error with your script? &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Dec 2016 18:29:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239305#M866467</guid>
      <dc:creator>benvatvandata</dc:creator>
      <dc:date>2016-12-10T18:29:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a grouped value field to the same field in script</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239306#M866468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And you want me to guess the error message? No thanks, not interested &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/silly.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ok, one guess. You replaced your entire script with the bit I posted instead of appending it to your existing script. The part I posted does need the table with the regular ItemCode field to exist already.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Dec 2016 19:02:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239306#M866468</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-12-10T19:02:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a grouped value field to the same field in script</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239307#M866469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;take it easy... of course I appended it, I missed a quotation mark ha - but no expenses are shown?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Dec 2016 20:06:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239307#M866469</guid>
      <dc:creator>benvatvandata</dc:creator>
      <dc:date>2016-12-10T20:06:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a grouped value field to the same field in script</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239308#M866470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What field(s) are you using as dimension in your chart and what are the expressions you use?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Dec 2016 12:46:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239308#M866470</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-12-11T12:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a grouped value field to the same field in script</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239309#M866471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Dim1: Division&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Dim2: ReportItemCode&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Exp: &lt;/P&gt;&lt;TABLE style="border: 0px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;TBODY style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;sum({&amp;lt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;MTGStatus = {'ASSIGNED','CLOSED','CLOSED BY FINANCE',&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'LOGISTICS CONFIRMED','PENDING/REP','PENDING/SPEAKER','PENDING/VENUE',&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'PROGRAM OCCURRED','RECONCILED', 'REQUESTED BY REP'},&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MTGDate = {"&amp;gt;=$(=yearstart(today()))"}&amp;nbsp; &amp;gt;} Expenses)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thanks,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Ben&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Dec 2016 02:53:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239309#M866471</guid>
      <dc:creator>benvatvandata</dc:creator>
      <dc:date>2016-12-12T02:53:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a grouped value field to the same field in script</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239310#M866472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your question is related to Script level. Have you seen Gysbert first reply&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This in bar chart?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/146336_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Dec 2016 03:21:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239310#M866472</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2016-12-12T03:21:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a grouped value field to the same field in script</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239311#M866473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So, that same expression does return results if you use ItemCode as dimension, but not if you use ReportItemCode?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Dec 2016 09:38:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239311#M866473</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-12-12T09:38:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a grouped value field to the same field in script</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239312#M866474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Phew, sorry it took me so long to respond - creating a new field eventually worked with my model. Thanks gysbert!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Ben&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Dec 2016 19:00:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-a-grouped-value-field-to-the-same-field-in-script/m-p/1239312#M866474</guid>
      <dc:creator>benvatvandata</dc:creator>
      <dc:date>2016-12-16T19:00:01Z</dc:date>
    </item>
  </channel>
</rss>

