<?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: How to create updated field within the group without aggregation in load script? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773197#M64255</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="commQV74.PNG" style="width: 178px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/46722i8D54B22DEB9B9DA9/image-size/large?v=v2&amp;amp;px=999" role="button" title="commQV74.PNG" alt="commQV74.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 11 Jan 2021 03:25:04 GMT</pubDate>
    <dc:creator>Saravanan_Desingh</dc:creator>
    <dc:date>2021-01-11T03:25:04Z</dc:date>
    <item>
      <title>How to create updated field within the group without aggregation in load script?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773188#M64248</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a table in the QS that will load as follow.&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;YearMonth&lt;/TD&gt;&lt;TD&gt;Product&lt;/TD&gt;&lt;TD&gt;Status01&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;202011&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;No&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;202011&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;No&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;202011&lt;/TD&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;No&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;202012&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;Yes&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;202012&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;No&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;202101&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;No&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;202101&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;No&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;202101&lt;/TD&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;Yes&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like create a second table that reports the Status by Product, where once the Status01 becomes Yes, it will be reported as Yes.&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Product&lt;/TD&gt;&lt;TD&gt;Status02&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;Yes&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;No&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;Yes&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I figured that I will need to add a column Status02 to get it done and reload with Product and Status02, as follow.&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;YearMonth&lt;/TD&gt;&lt;TD&gt;Product&lt;/TD&gt;&lt;TD&gt;Status01&lt;/TD&gt;&lt;TD&gt;Status02&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;202011&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;No&lt;/TD&gt;&lt;TD&gt;No&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;202011&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;No&lt;/TD&gt;&lt;TD&gt;No&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;202011&lt;/TD&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;No&lt;/TD&gt;&lt;TD&gt;No&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;202012&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;Yes&lt;/TD&gt;&lt;TD&gt;Yes&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;202012&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;No&lt;/TD&gt;&lt;TD&gt;No&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;202101&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;No&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Yes&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;202101&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;No&lt;/TD&gt;&lt;TD&gt;No&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;202101&lt;/TD&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;Yes&lt;/TD&gt;&lt;TD&gt;Yes&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried to use the following statement in the load script&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;IF(Previous(Status01)='Yes', Previous(Status01), Status01) AS Status02,&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;Group By Product,&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;Order by Product ASC, YearMonth ASC;&lt;/P&gt;&lt;P&gt;But it shows error because there is no aggregation here.&lt;/P&gt;&lt;P&gt;Looking for suggestion on how to make it works. Thank you in advance.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 00:51:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773188#M64248</guid>
      <dc:creator>A7R3</dc:creator>
      <dc:date>2024-11-16T00:51:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to create updated field within the group without aggregation in load script?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773189#M64249</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/93544"&gt;@A7R3&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can remove the Group by statement in ur load statement.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try like below&lt;/P&gt;&lt;P&gt;Temp:&lt;BR /&gt;LOAD YearMonth,&lt;BR /&gt;Product,&lt;BR /&gt;Status01&lt;BR /&gt;FROM&lt;BR /&gt;[&lt;A href="https://community.qlik.com/t5/Qlik-Sense-Advanced-Authoring/How-to-create-updated-field-within-the-group-without-aggregation/td-p/1773188" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Sense-Advanced-Authoring/How-to-create-updated-field-within-the-group-without-aggregation/td-p/1773188&lt;/A&gt;]&lt;BR /&gt;(html, codepage is 1252, embedded labels, table is @1);&lt;/P&gt;&lt;P&gt;Load IF(Previous(Status01)='Yes', Previous(Status01), Status01) AS Status02, *&lt;BR /&gt;Resident Temp&lt;BR /&gt;Order by Product ASC, YearMonth ASC;&lt;/P&gt;&lt;P&gt;DROP Table Temp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2021 01:30:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773189#M64249</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2021-01-11T01:30:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to create updated field within the group without aggregation in load script?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773190#M64250</link>
      <description>&lt;P&gt;Thanks for the super fast response.&lt;/P&gt;&lt;P&gt;That is where I was at initially. There are 2 problems with this.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;I get the Status02 carried forward from another Product. Once it is evaluating the Status01 for the next product, it should reset the Status02.&lt;/LI&gt;&lt;LI&gt;On the 4th row, if the Status01 is No, the Status02 will become No. It should stay as Yes.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Examples to follow&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2021 02:04:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773190#M64250</guid>
      <dc:creator>A7R3</dc:creator>
      <dc:date>2021-01-11T02:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to create updated field within the group without aggregation in load script?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773191#M64251</link>
      <description>&lt;P&gt;I get the Status02 carried forward from another Product. Once it is evaluating the Status01 for the next product, it should reset the Status02.&lt;/P&gt;&lt;P&gt;YearMonth Product Status01 Status02&lt;BR /&gt;202011 B No No&lt;BR /&gt;202012 B No No&lt;BR /&gt;202101 B Yes Yes&lt;BR /&gt;202011 C No &lt;STRONG&gt;Yes&lt;/STRONG&gt;&lt;BR /&gt;202101 C No No&lt;/P&gt;&lt;P&gt;For the same products, the status should stay as Yes.&lt;BR /&gt;On the 4th row, if the Status01 is No, the Status02 will become No. It should stay as Yes.&lt;/P&gt;&lt;P&gt;YearMonth Product Status01 Status02&lt;BR /&gt;202011 A No No&lt;BR /&gt;202012 A Yes Yes&lt;BR /&gt;202101 A No Yes&lt;BR /&gt;202102 A No &lt;STRONG&gt;No&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2021 02:08:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773191#M64251</guid>
      <dc:creator>A7R3</dc:creator>
      <dc:date>2021-01-11T02:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to create updated field within the group without aggregation in load script?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773193#M64252</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/93544"&gt;@A7R3&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;May be try like below&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Load IF(Previous(Status01)='Yes' and Product = Previous(Product), Peek('Status02'), Status01) AS Status02, *&lt;BR /&gt;Resident Temp&lt;BR /&gt;Order by Product ASC, YearMonth ASC;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2021 02:46:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773193#M64252</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2021-01-11T02:46:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to create updated field within the group without aggregation in load script?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773194#M64253</link>
      <description>&lt;P&gt;Hi Mayil,&lt;/P&gt;&lt;P&gt;Thanks for the suggestion.&amp;nbsp;&lt;/P&gt;&lt;P&gt;It solves the&amp;nbsp; carry forward problem.&lt;/P&gt;&lt;P&gt;Still need help to fix the issue to keep the Statu02 the same within the same Product.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2021 03:02:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773194#M64253</guid>
      <dc:creator>A7R3</dc:creator>
      <dc:date>2021-01-11T03:02:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to create updated field within the group without aggregation in load script?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773195#M64254</link>
      <description>&lt;P&gt;One&amp;nbsp; solution is.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;tab1:
LOAD * INLINE [
    YearMonth, Product, Status01
    202011, A, No
    202011, B, No
    202011, C, No
    202012, A, Yes
    202012, B, No
    202101, A, No
    202101, B, No
    202101, C, Yes
];

Left Join(tab1)
LOAD Product, If(Index(Concat(DISTINCT Status01),'Yes')&amp;gt;0,'Yes','No') As Status02
Resident tab1
Group By Product;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2021 03:24:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773195#M64254</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2021-01-11T03:24:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to create updated field within the group without aggregation in load script?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773197#M64255</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="commQV74.PNG" style="width: 178px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/46722i8D54B22DEB9B9DA9/image-size/large?v=v2&amp;amp;px=999" role="button" title="commQV74.PNG" alt="commQV74.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2021 03:25:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773197#M64255</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2021-01-11T03:25:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to create updated field within the group without aggregation in load script?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773200#M64256</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/93544"&gt;@A7R3&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you send the sample data and expected output.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2021 04:12:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773200#M64256</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2021-01-11T04:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to create updated field within the group without aggregation in load script?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773201#M64257</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/894"&gt;@Saravanan_Desingh&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Your suggestion goes right to the final solution. It is working. Thanks.&lt;/P&gt;&lt;P&gt;However, I will still need some help to tweak the script&lt;/P&gt;&lt;P&gt;1. The value of the Status01 is actually more than Yes and No. I have 5 different values&amp;nbsp; in this column. How can the scrip be changed to output the actual value, instead of 'Yes' and 'No'?&lt;/P&gt;&lt;P&gt;2.&amp;nbsp; With this solution, for one product, the entire column of Status02 are 'Yes' once the condition is met. Is there anyway to update the Status02 only if Status='Yes1" or "Yes02?&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;YearMonth Product Status01 Status02&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;202011&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; A&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;No &lt;STRONG&gt;No&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;----------Keep Status02 = Status01&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;202012&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; A &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Yes Yes&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;202101&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; A &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; No Yes&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;202102&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;A &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;No&amp;nbsp;Yes&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks in advance.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2021 04:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773201#M64257</guid>
      <dc:creator>A7R3</dc:creator>
      <dc:date>2021-01-11T04:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to create updated field within the group without aggregation in load script?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773202#M64258</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/17935"&gt;@MayilVahanan&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;The first 3 columns are the input, the 4th columns is the output.&lt;/P&gt;&lt;P&gt;Products ReportDate Status01 Status02&lt;BR /&gt;A 05/06/2020 Yellow Yellow&lt;BR /&gt;A 06/12/2020 Yellow Yellow&lt;BR /&gt;A 07/14/2020 Green01 Green01&lt;BR /&gt;B 05/08/2020 Yellow Yellow&lt;BR /&gt;B 06/15/2020 Yellow Yellow&lt;BR /&gt;B 06/16/2020 Yellow Yellow&lt;BR /&gt;B 06/22/2020 Yellow Yellow&lt;BR /&gt;B 06/23/2020 Green02 Green02&lt;BR /&gt;B 06/24/2020 Yellow Green02&lt;BR /&gt;B 06/25/2020 Yellow Green02&lt;BR /&gt;B 06/26/2020 Green02 Green02&lt;BR /&gt;B 06/29/2020 Yellow Green02&lt;BR /&gt;B 07/01/2020 Red Red&lt;BR /&gt;B 07/13/2020 Red Red&lt;BR /&gt;B 07/15/2020 Yellow Yellow&lt;BR /&gt;B 07/29/2020 Green02 Green02&lt;BR /&gt;C 05/08/2020 Yellow Yellow&lt;BR /&gt;C 05/15/2020 Yellow Yellow&lt;BR /&gt;C 05/28/2020 Yellow Yellow&lt;BR /&gt;C 06/16/2020 Yellow Yellow&lt;BR /&gt;C 06/18/2020 Green02 Green02&lt;BR /&gt;C 06/26/2020 Yellow Green02&lt;BR /&gt;C 06/29/2020 Yellow Green02&lt;BR /&gt;C 07/16/2020 Green02 Green02&lt;BR /&gt;C 07/29/2020 Green02 Green02&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2021 04:45:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773202#M64258</guid>
      <dc:creator>A7R3</dc:creator>
      <dc:date>2021-01-11T04:45:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to create updated field within the group without aggregation in load script?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773541#M64259</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/894"&gt;@Saravanan_Desingh&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I can use your suggestion by changing the use of the Status02 slightly. Thank you for that.&lt;/P&gt;&lt;P&gt;LOAD Product, If(Index(Concat(DISTINCT Status01),'Yes')&amp;gt;0, 'Yes', '') As Status02&lt;/P&gt;&lt;P&gt;Is there any way to have the Date_Status02 as the date the first time Status02 becomes Yes?&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2021 22:47:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773541#M64259</guid>
      <dc:creator>A7R3</dc:creator>
      <dc:date>2021-01-11T22:47:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to create updated field within the group without aggregation in load script?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773544#M64260</link>
      <description>&lt;P&gt;Is it what u are looking for?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;tab1:
LOAD * INLINE [
    YearMonth, Product, Status01
    202011, A, No
    202011, B, No
    202011, C, No
    202012, A, Yes
    202012, B, No
    202101, A, No
    202101, B, No
    202101, C, Yes
];

Left Join(tab1)
LOAD Product, If(Index(Concat(DISTINCT Status01),'Yes')&amp;gt;0,'Yes','No') As Status02,
	FirstSortedValue(If(Status01='Yes',YearMonth), If(Status01='Yes',YearMonth)) As Date_Status03
Resident tab1
Group By Product;&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 11 Jan 2021 23:54:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773544#M64260</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2021-01-11T23:54:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to create updated field within the group without aggregation in load script?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773546#M64261</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="commQV75.PNG" style="width: 180px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/46787i91D79CC01D8CB3A2/image-size/large?v=v2&amp;amp;px=999" role="button" title="commQV75.PNG" alt="commQV75.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;What if there is no 'Yes'? Also I could not understand your complete requirement.&lt;/P&gt;&lt;P&gt;If you could explain with a sample data and expected output, will help in quicker reaponse.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2021 23:56:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773546#M64261</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2021-01-11T23:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to create updated field within the group without aggregation in load script?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773549#M64262</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/894"&gt;@Saravanan_Desingh&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;The&amp;nbsp; FirstSortedValue functions should work here. Thanks.&amp;nbsp;&lt;/P&gt;&lt;P&gt;FirstSortedValue(If(Status01='Yes',YearMonth), If(Status01='Yes',YearMonth)) As Date_Status03&lt;/P&gt;&lt;P&gt;Great to learn from you.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jan 2021 00:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773549#M64262</guid>
      <dc:creator>A7R3</dc:creator>
      <dc:date>2021-01-12T00:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to create updated field within the group without aggregation in load script?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773550#M64263</link>
      <description>&lt;P&gt;If answered, please close the thread by choosing the answer. Thanks.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jan 2021 00:27:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-updated-field-within-the-group-without-aggregation/m-p/1773550#M64263</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2021-01-12T00:27:11Z</dc:date>
    </item>
  </channel>
</rss>

