<?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: Combine outer set analysis as Master Item with another expression that is defined as a Master Item in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Combine-outer-set-analysis-as-Master-Item-with-another/m-p/2438732#M97129</link>
    <description>&lt;P&gt;It is a bit hard to advice when there are multiple layers of variables in play.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What does&amp;nbsp;&lt;SPAN&gt;&lt;FONT face="courier new,courier"&gt;$(vMaxMonth) &lt;/FONT&gt;&lt;/SPAN&gt;return? What does&amp;nbsp;&lt;SPAN&gt;&lt;FONT face="courier new,courier"&gt;$(vMaxMonth)-1&lt;/FONT&gt; return?&amp;nbsp; Could it be that your set are expecting a string value 'Jan', 'Feb', etc... and your&amp;nbsp;&lt;FONT face="courier new,courier"&gt;$(vMaxMonth)-1 &lt;/FONT&gt;&lt;/SPAN&gt;returns a integer like 1,2,...?&lt;/P&gt;
&lt;P&gt;How do you handle when vMaxMonth is January?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 07 Apr 2024 17:12:24 GMT</pubDate>
    <dc:creator>Vegar</dc:creator>
    <dc:date>2024-04-07T17:12:24Z</dc:date>
    <item>
      <title>Combine outer set analysis as Master Item with another expression that is defined as a Master Item</title>
      <link>https://community.qlik.com/t5/App-Development/Combine-outer-set-analysis-as-Master-Item-with-another/m-p/2437422#M97064</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I'm trying to combine a pre-defined Outer Set Analysis with a pre-defined expression.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have variables in the script:&lt;/P&gt;
&lt;P&gt;MasterItem1&lt;/P&gt;
&lt;P&gt;{&amp;lt;Year={'$(vMaxYear)'},Month={'$(vMaxMonth)'},Day={'&amp;lt;=$(vMaxDay)'},Date=,YearMonth=&amp;gt;}&lt;/P&gt;
&lt;P&gt;MasterItem2&lt;/P&gt;
&lt;P&gt;Sum(distinct {&amp;lt;EVENT_TYPE = {Sales}&amp;gt;} Sales)&lt;/P&gt;
&lt;P&gt;This is what I want to use as an expression but it doesn't work:&lt;/P&gt;
&lt;P&gt;[MasterItem1]&lt;BR /&gt;[MasterItem2]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But this does work:&lt;/P&gt;
&lt;P&gt;{&amp;lt;Year={'$(vMaxYear)'},Month={'$(vMaxMonth)'},Day={'&amp;lt;=$(vMaxDay)'},Date=,YearMonth=&amp;gt;}&lt;/P&gt;
&lt;P&gt;Sum(distinct {&amp;lt;EVENT_TYPE = {Sales}&amp;gt;} Sales)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any idea why?&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2024 13:40:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combine-outer-set-analysis-as-Master-Item-with-another/m-p/2437422#M97064</guid>
      <dc:creator>qlikster</dc:creator>
      <dc:date>2024-04-03T13:40:33Z</dc:date>
    </item>
    <item>
      <title>Re: Combine outer set analysis as Master Item with another expression that is defined as a Master Item</title>
      <link>https://community.qlik.com/t5/App-Development/Combine-outer-set-analysis-as-Master-Item-with-another/m-p/2437426#M97065</link>
      <description>&lt;P&gt;I managed to solve it.&lt;/P&gt;
&lt;P&gt;Just use dollar sign expansion on the first MasterItem:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;$([MasterItem1])&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[MasterItem2]&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2024 13:45:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combine-outer-set-analysis-as-Master-Item-with-another/m-p/2437426#M97065</guid>
      <dc:creator>qlikster</dc:creator>
      <dc:date>2024-04-03T13:45:15Z</dc:date>
    </item>
    <item>
      <title>Re: Combine outer set analysis as Master Item with another expression that is defined as a Master Item</title>
      <link>https://community.qlik.com/t5/App-Development/Combine-outer-set-analysis-as-Master-Item-with-another/m-p/2437440#M97068</link>
      <description>&lt;P&gt;Was to quick to think I had a working solution.&lt;/P&gt;
&lt;P&gt;That didn't play so I'm still open for suggestions/help&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2024 14:14:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combine-outer-set-analysis-as-Master-Item-with-another/m-p/2437440#M97068</guid>
      <dc:creator>qlikster</dc:creator>
      <dc:date>2024-04-03T14:14:10Z</dc:date>
    </item>
    <item>
      <title>Re: Combine outer set analysis as Master Item with another expression that is defined as a Master Item</title>
      <link>https://community.qlik.com/t5/App-Development/Combine-outer-set-analysis-as-Master-Item-with-another/m-p/2437664#M97076</link>
      <description>&lt;P&gt;I'm not sure if you can treat master items as variables. Consider storing your SET modifiers as variables and not master items.&lt;/P&gt;
&lt;P&gt;Then you could do this.&lt;/P&gt;
&lt;P&gt;=$(var_this_week_2_date)&amp;nbsp;[Masteritem2]&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2024 03:41:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combine-outer-set-analysis-as-Master-Item-with-another/m-p/2437664#M97076</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2024-04-04T03:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: Combine outer set analysis as Master Item with another expression that is defined as a Master Item</title>
      <link>https://community.qlik.com/t5/App-Development/Combine-outer-set-analysis-as-Master-Item-with-another/m-p/2438730#M97128</link>
      <description>&lt;P&gt;Too bad,&lt;/P&gt;
&lt;P&gt;would be great to set up a few vMasterItems for reusability .&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The variable overview and editing is not very well implemented.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But thanks for the reply. I'll set the variables in the script and then use them in the Master Items.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Weird though, this almost worked (dollar sign expansion on the variable Master Item), I got results but didn't work when I wanted to check previous month :&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;$([MasterItem1])&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[MasterItem2]&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;&lt;SPAN&gt;$(vMaxMonth)-1&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Apr 2024 16:32:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combine-outer-set-analysis-as-Master-Item-with-another/m-p/2438730#M97128</guid>
      <dc:creator>qlikster</dc:creator>
      <dc:date>2024-04-07T16:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: Combine outer set analysis as Master Item with another expression that is defined as a Master Item</title>
      <link>https://community.qlik.com/t5/App-Development/Combine-outer-set-analysis-as-Master-Item-with-another/m-p/2438732#M97129</link>
      <description>&lt;P&gt;It is a bit hard to advice when there are multiple layers of variables in play.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What does&amp;nbsp;&lt;SPAN&gt;&lt;FONT face="courier new,courier"&gt;$(vMaxMonth) &lt;/FONT&gt;&lt;/SPAN&gt;return? What does&amp;nbsp;&lt;SPAN&gt;&lt;FONT face="courier new,courier"&gt;$(vMaxMonth)-1&lt;/FONT&gt; return?&amp;nbsp; Could it be that your set are expecting a string value 'Jan', 'Feb', etc... and your&amp;nbsp;&lt;FONT face="courier new,courier"&gt;$(vMaxMonth)-1 &lt;/FONT&gt;&lt;/SPAN&gt;returns a integer like 1,2,...?&lt;/P&gt;
&lt;P&gt;How do you handle when vMaxMonth is January?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Apr 2024 17:12:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combine-outer-set-analysis-as-Master-Item-with-another/m-p/2438732#M97129</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2024-04-07T17:12:24Z</dc:date>
    </item>
    <item>
      <title>Re: Combine outer set analysis as Master Item with another expression that is defined as a Master Item</title>
      <link>https://community.qlik.com/t5/App-Development/Combine-outer-set-analysis-as-Master-Item-with-another/m-p/2438879#M97132</link>
      <description>&lt;P&gt;I suggest to re-think the entire approach because combining and/or nesting multiple expression-parts per master-items and/or variables could become the complete opposite to the aim of simplifying the handling. IMO it's only sensible for a few really redundant and/or rather quite complex expressions but not as a general approach.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Apr 2024 09:38:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combine-outer-set-analysis-as-Master-Item-with-another/m-p/2438879#M97132</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2024-04-08T09:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: Combine outer set analysis as Master Item with another expression that is defined as a Master Item</title>
      <link>https://community.qlik.com/t5/App-Development/Combine-outer-set-analysis-as-Master-Item-with-another/m-p/2439037#M97144</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Interesting approach! Combining outer set analysis with another expression defined as a Master Item can lead to deeper insights and &lt;A href="https://evolfus.com/" target="_self"&gt;herb grinder&lt;/A&gt; enhanced data analysis. Excited to see the results of this innovative method in action. Keep up the great work.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Apr 2024 17:54:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Combine-outer-set-analysis-as-Master-Item-with-another/m-p/2439037#M97144</guid>
      <dc:creator>mikeharing72</dc:creator>
      <dc:date>2024-04-08T17:54:43Z</dc:date>
    </item>
  </channel>
</rss>

