<?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 Using pivot table and master items in Set expressions in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Using-pivot-table-and-master-items-in-Set-expressions/m-p/2499579#M103012</link>
    <description>&lt;P&gt;Hi all&lt;BR /&gt;I am trying to combine pivot table, master items and set expressions. What I am trying to achieve, is using the value of a column, which is a master item drill-down, in a set expression, in order to get a result that is specific to that column.&lt;BR /&gt;In my case, I have customers that might have used different services at any time, and my users will navigate through years, months and days using a drill-down. Let's say the possible services are called 1 and 200, and for any level of dates, I need to show:&lt;BR /&gt;- the number of distinct customers that have only used service 1&lt;BR /&gt;- the number of distinct customers that have only used service 200&lt;BR /&gt;- the number of distinct customers that have used both 1 and 200&lt;/P&gt;
&lt;P&gt;For example: if I drill down to January 2024, I'll have one column per day. In the Jan 1, 2024 column, I want to count the customers that have used service 1 in that day, but not service 200 in that same day, regardless to the other days of the month.&lt;/P&gt;
&lt;P&gt;Accordingly, if I drill up to 2024, I'll see one column per month, and in the January column I want to show the customers that have used 1 in January but not 200 in January, and so on.&lt;/P&gt;
&lt;P&gt;So what I've done:&lt;BR /&gt;- I have created a master item, drill-down, combining Year, Month and Day, and used it as a column in the pivot table&lt;BR /&gt;- I have created measures with set expression, using the only() function to check if there is only one day, one month or one year selected, and creating a different set expression accordingly.&lt;/P&gt;
&lt;P&gt;Below is an example of one of the measures, aiming to count the customers that used 1 but not 200 in a period of time. However, if I drill down to a month, it still counts the access to services in the whole month, not in any single day.&lt;/P&gt;
&lt;P&gt;In order to check if I can correctly assess the drill down level in a formula, I have added a "Date Test" measures, that correctly shows only the year, year and month, or full date according to the level drilled. But still I can't sort my issue out.&lt;/P&gt;
&lt;P&gt;In the attached example app I have added some KPIs showing the desired result on 2024, Jan 2024, Jan 15 2024&lt;/P&gt;
&lt;P&gt;Any help will be highly appreciated!!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;= IF (
    IsNull(only([AccessDate.autoCalendar.Day])),
        IF (
            IsNull(only([AccessDate.autoCalendar.Month])),
                    IF (
                          IsNull(only([AccessDate.autoCalendar.Year])),
                          'Null',
                          Count({
                              &amp;lt;
                                CustomerID = (P({
                                    &amp;lt; ServiceID={"200"}, 
                                      AccessDate.autoCalendar.Year={"$(=Only(AccessDate.autoCalendar.Year))"}
                                    &amp;gt;
                                }) 
                                - 
                                P({
                                    &amp;lt; ServiceID={"1"}, 
                                      AccessDate.autoCalendar.Year={"$(=Only(AccessDate.autoCalendar.Year))"}
                                    &amp;gt;
                                }) )
                              &amp;gt; 
                            } DISTINCT CustomerID)
                      ),
            Count({
                &amp;lt;
                  CustomerID = (P({
                      &amp;lt; ServiceID={"200"}, 
                        AccessDate.autoCalendar.Year={"$(=Only(AccessDate.autoCalendar.Year))"},
                        AccessDate.autoCalendar.Month={"$(=If(GetSelectedCount(AccessDate.autoCalendar.Month) &amp;gt; 0, Only(AccessDate.autoCalendar.Month), '*'))"}
                      &amp;gt;
                  }) 
                  - 
                  P({
                      &amp;lt; ServiceID={"1"}, 
                        AccessDate.autoCalendar.Year={"$(=Only(AccessDate.autoCalendar.Year))"},
                        AccessDate.autoCalendar.Month={"$(=If(GetSelectedCount(AccessDate.autoCalendar.Month) &amp;gt; 0, Only(AccessDate.autoCalendar.Month), '*'))"}
                      &amp;gt;
                  }) )
                &amp;gt; 
              } DISTINCT CustomerID)
        )
          ,
    Count({
        &amp;lt;
          CustomerID = (P({
              &amp;lt; ServiceID={"200"}, 
                AccessDate.autoCalendar.Year={"$(=Only(AccessDate.autoCalendar.Year))"},
                AccessDate.autoCalendar.Month={"$(=If(GetSelectedCount(AccessDate.autoCalendar.Month) &amp;gt; 0, Only(AccessDate.autoCalendar.Month), '*'))"},
                AccessDate.autoCalendar.Day={"$(=If(GetSelectedCount(AccessDate.autoCalendar.Day) &amp;gt; 0, Only(AccessDate.autoCalendar.Day), '*'))"}
              &amp;gt;
          }) 
          - 
          P({
              &amp;lt; ServiceID={"1"}, 
                AccessDate.autoCalendar.Year={"$(=Only(AccessDate.autoCalendar.Year))"},
                AccessDate.autoCalendar.Month={"$(=If(GetSelectedCount(AccessDate.autoCalendar.Month) &amp;gt; 0, Only(AccessDate.autoCalendar.Month), '*'))"},
                AccessDate.autoCalendar.Day={"$(=If(GetSelectedCount(AccessDate.autoCalendar.Day) &amp;gt; 0, Only(AccessDate.autoCalendar.Day), '*'))"}
              &amp;gt;
          }) )
        &amp;gt; 
      } DISTINCT CustomerID
    )
)
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 30 Dec 2024 16:58:21 GMT</pubDate>
    <dc:creator>Some1</dc:creator>
    <dc:date>2024-12-30T16:58:21Z</dc:date>
    <item>
      <title>Using pivot table and master items in Set expressions</title>
      <link>https://community.qlik.com/t5/App-Development/Using-pivot-table-and-master-items-in-Set-expressions/m-p/2499579#M103012</link>
      <description>&lt;P&gt;Hi all&lt;BR /&gt;I am trying to combine pivot table, master items and set expressions. What I am trying to achieve, is using the value of a column, which is a master item drill-down, in a set expression, in order to get a result that is specific to that column.&lt;BR /&gt;In my case, I have customers that might have used different services at any time, and my users will navigate through years, months and days using a drill-down. Let's say the possible services are called 1 and 200, and for any level of dates, I need to show:&lt;BR /&gt;- the number of distinct customers that have only used service 1&lt;BR /&gt;- the number of distinct customers that have only used service 200&lt;BR /&gt;- the number of distinct customers that have used both 1 and 200&lt;/P&gt;
&lt;P&gt;For example: if I drill down to January 2024, I'll have one column per day. In the Jan 1, 2024 column, I want to count the customers that have used service 1 in that day, but not service 200 in that same day, regardless to the other days of the month.&lt;/P&gt;
&lt;P&gt;Accordingly, if I drill up to 2024, I'll see one column per month, and in the January column I want to show the customers that have used 1 in January but not 200 in January, and so on.&lt;/P&gt;
&lt;P&gt;So what I've done:&lt;BR /&gt;- I have created a master item, drill-down, combining Year, Month and Day, and used it as a column in the pivot table&lt;BR /&gt;- I have created measures with set expression, using the only() function to check if there is only one day, one month or one year selected, and creating a different set expression accordingly.&lt;/P&gt;
&lt;P&gt;Below is an example of one of the measures, aiming to count the customers that used 1 but not 200 in a period of time. However, if I drill down to a month, it still counts the access to services in the whole month, not in any single day.&lt;/P&gt;
&lt;P&gt;In order to check if I can correctly assess the drill down level in a formula, I have added a "Date Test" measures, that correctly shows only the year, year and month, or full date according to the level drilled. But still I can't sort my issue out.&lt;/P&gt;
&lt;P&gt;In the attached example app I have added some KPIs showing the desired result on 2024, Jan 2024, Jan 15 2024&lt;/P&gt;
&lt;P&gt;Any help will be highly appreciated!!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;= IF (
    IsNull(only([AccessDate.autoCalendar.Day])),
        IF (
            IsNull(only([AccessDate.autoCalendar.Month])),
                    IF (
                          IsNull(only([AccessDate.autoCalendar.Year])),
                          'Null',
                          Count({
                              &amp;lt;
                                CustomerID = (P({
                                    &amp;lt; ServiceID={"200"}, 
                                      AccessDate.autoCalendar.Year={"$(=Only(AccessDate.autoCalendar.Year))"}
                                    &amp;gt;
                                }) 
                                - 
                                P({
                                    &amp;lt; ServiceID={"1"}, 
                                      AccessDate.autoCalendar.Year={"$(=Only(AccessDate.autoCalendar.Year))"}
                                    &amp;gt;
                                }) )
                              &amp;gt; 
                            } DISTINCT CustomerID)
                      ),
            Count({
                &amp;lt;
                  CustomerID = (P({
                      &amp;lt; ServiceID={"200"}, 
                        AccessDate.autoCalendar.Year={"$(=Only(AccessDate.autoCalendar.Year))"},
                        AccessDate.autoCalendar.Month={"$(=If(GetSelectedCount(AccessDate.autoCalendar.Month) &amp;gt; 0, Only(AccessDate.autoCalendar.Month), '*'))"}
                      &amp;gt;
                  }) 
                  - 
                  P({
                      &amp;lt; ServiceID={"1"}, 
                        AccessDate.autoCalendar.Year={"$(=Only(AccessDate.autoCalendar.Year))"},
                        AccessDate.autoCalendar.Month={"$(=If(GetSelectedCount(AccessDate.autoCalendar.Month) &amp;gt; 0, Only(AccessDate.autoCalendar.Month), '*'))"}
                      &amp;gt;
                  }) )
                &amp;gt; 
              } DISTINCT CustomerID)
        )
          ,
    Count({
        &amp;lt;
          CustomerID = (P({
              &amp;lt; ServiceID={"200"}, 
                AccessDate.autoCalendar.Year={"$(=Only(AccessDate.autoCalendar.Year))"},
                AccessDate.autoCalendar.Month={"$(=If(GetSelectedCount(AccessDate.autoCalendar.Month) &amp;gt; 0, Only(AccessDate.autoCalendar.Month), '*'))"},
                AccessDate.autoCalendar.Day={"$(=If(GetSelectedCount(AccessDate.autoCalendar.Day) &amp;gt; 0, Only(AccessDate.autoCalendar.Day), '*'))"}
              &amp;gt;
          }) 
          - 
          P({
              &amp;lt; ServiceID={"1"}, 
                AccessDate.autoCalendar.Year={"$(=Only(AccessDate.autoCalendar.Year))"},
                AccessDate.autoCalendar.Month={"$(=If(GetSelectedCount(AccessDate.autoCalendar.Month) &amp;gt; 0, Only(AccessDate.autoCalendar.Month), '*'))"},
                AccessDate.autoCalendar.Day={"$(=If(GetSelectedCount(AccessDate.autoCalendar.Day) &amp;gt; 0, Only(AccessDate.autoCalendar.Day), '*'))"}
              &amp;gt;
          }) )
        &amp;gt; 
      } DISTINCT CustomerID
    )
)
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Dec 2024 16:58:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-pivot-table-and-master-items-in-Set-expressions/m-p/2499579#M103012</guid>
      <dc:creator>Some1</dc:creator>
      <dc:date>2024-12-30T16:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: Using pivot table and master items in Set expressions</title>
      <link>https://community.qlik.com/t5/App-Development/Using-pivot-table-and-master-items-in-Set-expressions/m-p/2500400#M103125</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/262647"&gt;@Some1&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;unfortunately I am unable to import your file into my QlikSense environment, could you post these desired results separately?&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;
&lt;P&gt;In the attached example app I have added some KPIs showing the desired result on 2024, Jan 2024, Jan 15 2024&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2025 13:56:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-pivot-table-and-master-items-in-Set-expressions/m-p/2500400#M103125</guid>
      <dc:creator>lennart_mo</dc:creator>
      <dc:date>2025-01-08T13:56:11Z</dc:date>
    </item>
    <item>
      <title>Re: Using pivot table and master items in Set expressions</title>
      <link>https://community.qlik.com/t5/App-Development/Using-pivot-table-and-master-items-in-Set-expressions/m-p/2500571#M103160</link>
      <description>&lt;P&gt;Hi thankls for your interest in my issue.&lt;BR /&gt;I'm attaching the script I have used to create the data, and the screenshot of the desired result if I drill down to 2024, Jan 2024, or Jan 15, 2024.&lt;/P&gt;
&lt;P&gt;Basically I need to find a way to use the column or row name in the set expression, but I keep getting the data according to the active filters.&lt;/P&gt;
&lt;P&gt;cheers&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2025 10:36:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-pivot-table-and-master-items-in-Set-expressions/m-p/2500571#M103160</guid>
      <dc:creator>Some1</dc:creator>
      <dc:date>2025-01-09T10:36:37Z</dc:date>
    </item>
    <item>
      <title>Re: Using pivot table and master items in Set expressions</title>
      <link>https://community.qlik.com/t5/App-Development/Using-pivot-table-and-master-items-in-Set-expressions/m-p/2501481#M103340</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;
&lt;P&gt;I've finally gotten around to trying a few different approaches and I think I might have found a solution for your problem. I used the following formula:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;if(
	IsNull(GetFieldSelections(AccessDate.autoCalendar.Year)),

	Sum(
	AGGR(
	(Count({&amp;lt;ServiceID={1}&amp;gt;} DISTINCT CustomerID) - Count({&amp;lt;ServiceID={200}&amp;gt;} DISTINCT CustomerID))=1
	, CustomerID, AccessDate.autoCalendar.Year)*-1
	),
    
    if(
    
    	IsNull(GetFieldSelections(AccessDate.autoCalendar.Month)),
    
    	Sum(
		AGGR(
		(Count({&amp;lt;ServiceID={1}&amp;gt;} DISTINCT CustomerID) - Count({&amp;lt;ServiceID={200}&amp;gt;} DISTINCT CustomerID))=1
		, CustomerID, AccessDate.autoCalendar.Month, AccessDate.autoCalendar.Year)*-1
		),
    
    	Sum(
		AGGR(
		(Count({&amp;lt;ServiceID={1}&amp;gt;} DISTINCT CustomerID) - Count({&amp;lt;ServiceID={200}&amp;gt;} DISTINCT CustomerID))=1
		, CustomerID, AccessDate.autoCalendar.Day, AccessDate.autoCalendar.Month, AccessDate.autoCalendar.Year)*-1
		)
	)
    
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me know if this gives you your desired results!&lt;/P&gt;
&lt;P&gt;Cheers&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jan 2025 16:27:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-pivot-table-and-master-items-in-Set-expressions/m-p/2501481#M103340</guid>
      <dc:creator>lennart_mo</dc:creator>
      <dc:date>2025-01-15T16:27:22Z</dc:date>
    </item>
    <item>
      <title>Re: Using pivot table and master items in Set expressions</title>
      <link>https://community.qlik.com/t5/App-Development/Using-pivot-table-and-master-items-in-Set-expressions/m-p/2501490#M103342</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/300891"&gt;@lennart_mo&lt;/a&gt;&amp;nbsp;, thanks. I'm trying to understand the logic but I'm not expert enough. I guess this shoud count the customers that used service 1 but not 200 in the period. I'm not sure why the result is then multiplied *-1.&lt;BR /&gt;To have the other combinations I guess I should do:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;(Count({&amp;lt;ServiceID={200}&amp;gt;} DISTINCT CustomerID) - Count({&amp;lt;ServiceID={1}&amp;gt;} DISTINCT CustomerID))=1&lt;/LI-CODE&gt;
&lt;P&gt;to count the customers of 200 only. How should I count the customers of both services?&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jan 2025 17:00:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-pivot-table-and-master-items-in-Set-expressions/m-p/2501490#M103342</guid>
      <dc:creator>Some1</dc:creator>
      <dc:date>2025-01-15T17:00:58Z</dc:date>
    </item>
    <item>
      <title>Re: Using pivot table and master items in Set expressions</title>
      <link>https://community.qlik.com/t5/App-Development/Using-pivot-table-and-master-items-in-Set-expressions/m-p/2501802#M103380</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/262647"&gt;@Some1&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;I'll try to explain. The AGGR() Function gives us the ability to more or less create a table using dimensions different from our visualization. In this case, one table per each step of your drilldown.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Sum(
	AGGR(
	(Count({&amp;lt;ServiceID={1}&amp;gt;} DISTINCT CustomerID) - Count({&amp;lt;ServiceID={200}&amp;gt;} DISTINCT CustomerID))=1
	, CustomerID, AccessDate.autoCalendar.Year)*-1
)&lt;/LI-CODE&gt;
&lt;P&gt;So lets look at the first part of my expression:&lt;/P&gt;
&lt;P&gt;In the AGGR() i use the dimensions CustomerID and Year, meaning I'll get one value per Customer and Year. This value is calculated by checking wether there were events with the according ServiceIDs.&lt;/P&gt;
&lt;P&gt;If there was one during a year, the count should return 1. Since your initial request was to filter out those where the EventID was 1 but not 200, this formula&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;(Count({&amp;lt;ServiceID={1}&amp;gt;} DISTINCT CustomerID) - Count({&amp;lt;ServiceID={200}&amp;gt;} DISTINCT CustomerID))&lt;/LI-CODE&gt;
&lt;P&gt;returns 0 or -1 for any customer where an EventID = 200 occured.&lt;/P&gt;
&lt;P&gt;To avoid having customers canceling each other out (i.e. one having only EventID 1, the other 200, resulting in 1 and -1) I added the "=1" part.&lt;/P&gt;
&lt;P&gt;That leads us to the "*-1": This is necessary, since the comparison in our AGGR() only returns -1 and 0 (TRUE and FALSE), so not doing so would return a negative value.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To implement your new request I would consider changing the formula in the AGGR() as follows:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;(Count({&amp;lt;ServiceID={1}&amp;gt;} DISTINCT CustomerID)*2 + Count({&amp;lt;ServiceID={200}&amp;gt;} DISTINCT CustomerID))&lt;/LI-CODE&gt;
&lt;P&gt;In doing so you'll get a distinct value for each of the four cases, so you only have to adjust the number the term should be equal to.&lt;/P&gt;
&lt;TABLE border="1" width="100%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%" class="lia-align-left"&gt;EventID = 1?&lt;/TD&gt;
&lt;TD width="33.333333333333336%" class="lia-align-left"&gt;EventID = 200?&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;Return value&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%" class="lia-align-left"&gt;no&lt;/TD&gt;
&lt;TD width="33.333333333333336%" class="lia-align-left"&gt;no&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;0&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%" class="lia-align-left"&gt;no&lt;/TD&gt;
&lt;TD width="33.333333333333336%" class="lia-align-left"&gt;yes&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;1&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%" class="lia-align-left"&gt;yes&lt;/TD&gt;
&lt;TD width="33.333333333333336%" class="lia-align-left"&gt;no&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;2&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%" class="lia-align-left"&gt;yes&lt;/TD&gt;
&lt;TD width="33.333333333333336%" class="lia-align-left"&gt;yes&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;3&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jan 2025 12:24:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-pivot-table-and-master-items-in-Set-expressions/m-p/2501802#M103380</guid>
      <dc:creator>lennart_mo</dc:creator>
      <dc:date>2025-01-17T12:24:23Z</dc:date>
    </item>
    <item>
      <title>Re: Using pivot table and master items in Set expressions</title>
      <link>https://community.qlik.com/t5/App-Development/Using-pivot-table-and-master-items-in-Set-expressions/m-p/2502627#M103481</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/300891"&gt;@lennart_mo&lt;/a&gt;&amp;nbsp;that works fine!!! I like the solution with the binary values of the two services, it can be applied also in case of combination of more services.&lt;BR /&gt;Thanks a lot! I've learnt a good trick.&lt;/P&gt;
&lt;P&gt;cheers&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2025 10:57:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-pivot-table-and-master-items-in-Set-expressions/m-p/2502627#M103481</guid>
      <dc:creator>Some1</dc:creator>
      <dc:date>2025-01-23T10:57:21Z</dc:date>
    </item>
  </channel>
</rss>

