<?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: Change set analysis to be included in script in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Change-set-analysis-to-be-included-in-script/m-p/1577891#M62976</link>
    <description>&lt;P&gt;Hi Robin,&lt;/P&gt;&lt;P&gt;Do the following:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Get the if statement without the aggr working (example, call column AA)&lt;/LI&gt;&lt;LI&gt;Get another load and replace the aggr by a group by (example, call column BB)&lt;/LI&gt;&lt;LI&gt;Get this information BB in a mapping load and map this information, with some conditions to the previous table and where not, keep the old AA.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Jordy&lt;/P&gt;&lt;P&gt;Climber&lt;/P&gt;</description>
    <pubDate>Wed, 08 May 2019 11:22:42 GMT</pubDate>
    <dc:creator>JordyWegman</dc:creator>
    <dc:date>2019-05-08T11:22:42Z</dc:date>
    <item>
      <title>Change set analysis to be included in script</title>
      <link>https://community.qlik.com/t5/App-Development/Change-set-analysis-to-be-included-in-script/m-p/1575185#M62975</link>
      <description>&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was wondering if anyone can help me change the following expression so it will be accepted by the data load editor?&lt;/P&gt;&lt;P&gt;The main reason for me not being able to do it, is because I do not know how to change the AGGR expresiion to work in the script. I know it needs to change to group by, but what about the rest of the set analsyis?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;LI-SPOILER&gt;=if ("Cycle" &amp;lt;&amp;gt;'2018-2019', null(),&lt;BR /&gt;If(IsNull("OPR 2018"), (Null()),&lt;BR /&gt;if(IsNull("Movement Type"), (Null()),&lt;BR /&gt;if("OPR 2018" ='Not Rated', (Null()),&lt;BR /&gt;If("OPR 2018" ='1B' and "Movement Type" ='Termination Involuntary', ('Adherent'),&lt;BR /&gt;If("OPR 2018" ='1B' and "Movement Type" ='Termination Voluntary', ('Adherent'),&lt;BR /&gt;If("OPR 2018" ='1A' and "Movement Type" ='Termination Involuntary' , ('Adherent'),&lt;BR /&gt;If("OPR 2018" ='1A' and "Movement Type" ='Termination Voluntary' , ('Adherent'),&lt;BR /&gt;If("OPR 2018" ='1A' and "Movement Type" ='Lateral Move', ('Adherent'),&lt;BR /&gt;If("OPR 2018" ='1A' and "Movement Type" ='Demotion', ('Adherent'),&lt;BR /&gt;If("OPR 2018" ='2' and "Movement Type" ='Lateral Move' , ('Adherent'),&lt;BR /&gt;If("OPR 2018" ='2' and "Movement Type" ='Promotion Within Band', ('Adherent'),&lt;BR /&gt;If("OPR 2018" ='4A' and "Movement Type" ='Promotion Band Up', ('Adherent'),&lt;BR /&gt;IF(&lt;BR /&gt;AGGR(&lt;BR /&gt;IF(Count(DISTINCT {&amp;lt;[OPR 2018] = {'4A'}, Name *= p({&amp;lt;[Movement Type] = {'Promotion Band Up'} and not [Movement Type] = {'Termination Voluntary'} and not [Movement Type] = {'Termination Involuntary'}&amp;gt;})&amp;gt;} "Global ID")='1','Adherent'),"Global ID")&lt;BR /&gt;='Adherent', 'Adherent',&lt;BR /&gt;If("OPR 2018" ='3B' and "Movement Type" ='Lateral Move' , ('Adherent'),&lt;BR /&gt;If("OPR 2018" ='3B' and "Movement Type" ='Promotion Within Band', ('Adherent'),&lt;BR /&gt;If("OPR 2018" ='3A' and "Movement Type" ='Lateral Move', ('Adherent'),&lt;BR /&gt;If("OPR 2018" ='3A' and "Movement Type" ='Promotion Within Band', ('Adherent'),&lt;BR /&gt;If("OPR 2018" ='3A' and "Movement Type" ='Promotion Band Up', ('Adherent'),&lt;BR /&gt;If("OPR 2018" ='4B' and "Movement Type" ='Lateral Move' , ('Adherent'),&lt;BR /&gt;If("OPR 2018" ='4B' and "Movement Type" ='Promotion Within Band', ('Adherent'),&lt;BR /&gt;If("OPR 2018" ='4B' and "Movement Type" ='Promotion Band Up', ('Adherent'), ('Non-Adherent')))))))))))))))))))))))&lt;/LI-SPOILER&gt;</description>
      <pubDate>Fri, 02 Apr 2021 07:54:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Change-set-analysis-to-be-included-in-script/m-p/1575185#M62975</guid>
      <dc:creator>robin_heijt</dc:creator>
      <dc:date>2021-04-02T07:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: Change set analysis to be included in script</title>
      <link>https://community.qlik.com/t5/App-Development/Change-set-analysis-to-be-included-in-script/m-p/1577891#M62976</link>
      <description>&lt;P&gt;Hi Robin,&lt;/P&gt;&lt;P&gt;Do the following:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Get the if statement without the aggr working (example, call column AA)&lt;/LI&gt;&lt;LI&gt;Get another load and replace the aggr by a group by (example, call column BB)&lt;/LI&gt;&lt;LI&gt;Get this information BB in a mapping load and map this information, with some conditions to the previous table and where not, keep the old AA.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Jordy&lt;/P&gt;&lt;P&gt;Climber&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2019 11:22:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Change-set-analysis-to-be-included-in-script/m-p/1577891#M62976</guid>
      <dc:creator>JordyWegman</dc:creator>
      <dc:date>2019-05-08T11:22:42Z</dc:date>
    </item>
  </channel>
</rss>

