<?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: QS Binary load followed by inner join to reduce not working in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/QS-Binary-load-followed-by-inner-join-to-reduce-not-working/m-p/2513548#M105353</link>
    <description>&lt;P&gt;Thanks for all your help!&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So my error was related to the field being misnamed.&amp;nbsp; (Duh...)&lt;/P&gt;&lt;P&gt;But your script really helped me to figure out my reductions.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I didn't go the way of section access because I would need to reduce the date and hide/show sheets.&amp;nbsp; This feels like a bigger pain then bianary, reduction, making spécific objects...&amp;nbsp; But it merits testing to get more familiar with section access.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;-Leen&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 08 Apr 2025 15:37:52 GMT</pubDate>
    <dc:creator>leenlart</dc:creator>
    <dc:date>2025-04-08T15:37:52Z</dc:date>
    <item>
      <title>QS Binary load followed by inner join to reduce not working</title>
      <link>https://community.qlik.com/t5/App-Development/QS-Binary-load-followed-by-inner-join-to-reduce-not-working/m-p/2512519#M105226</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have an existing app (APP1) with the sales for the entire company.&amp;nbsp; One branch has requested a simplified app for their sales force (NEWAPP).&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd like to do a binary load in&amp;nbsp;&amp;nbsp;NEWAPP followed by a reduction to only keep the data for this branch's salesforce.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;TEST 1&lt;/STRONG&gt; &lt;/U&gt;What I've tried :&amp;nbsp;&lt;/P&gt;&lt;P&gt;Script line 1 :&amp;nbsp;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;Binary 'address of APP1' ;&amp;nbsp;&lt;/EM&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This alone works fine.&amp;nbsp; I get all the data.&lt;/P&gt;&lt;P&gt;Script line later on:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;FONT color="#0000FF"&gt;INNER JOIN ([FAITS])&lt;/FONT&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;FONT color="#0000FF"&gt;LOAD '4 Ventes Industrielles' as [CGE11 NIV1 RESEAU]&lt;/FONT&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;FONT color="#0000FF"&gt;AUTOGENERATE 1;&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;The idea is to reduce my data table on the field&amp;nbsp; [CGE11 NIV1 RESEAU] where I have the value&amp;nbsp;'4 Ventes Industrielles'.&amp;nbsp; This turns correctly (without any errors) but instead of only seeing the data for the lines when&amp;nbsp; [CGE11 NIV1 RESEAU] =&amp;nbsp;'4 Ventes Industrielles' , now &lt;STRONG&gt;all&lt;/STRONG&gt; my original data has the value&amp;nbsp;'4 Ventes Industrielles'.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What is going on here ?&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To be clear, to correctly reduce all my data, would I then need to run through all other table to do this type of inner join on a field to keep only the data that pertains to my wanted set ?&amp;nbsp; (Ie, items, clients, ...)&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;TEST 2&lt;/STRONG&gt;&amp;nbsp;&lt;/U&gt;As Test1 didn't work the way I expected, I tried a second idea:&amp;nbsp;&lt;/P&gt;&lt;P&gt;Script line 1 :&amp;nbsp;&lt;EM&gt;&lt;FONT color="#0000FF"&gt;Binary 'address of APP1' ;&amp;nbsp;&amp;nbsp;&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Script line later on:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;FONT color="#0000FF"&gt;FAITS_VI:&lt;/FONT&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;FONT color="#0000FF"&gt;NoConcatenate&lt;/FONT&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;FONT color="#0000FF"&gt;Load *&lt;/FONT&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;FONT color="#0000FF"&gt;Resident FAITS&lt;/FONT&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;FONT color="#0000FF"&gt;Where left([CGE11 NIV1 RESEAU],1)=4 ;&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;EM&gt;&lt;FONT color="#0000FF"&gt;Drop TAble FAITS;&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;This ends in an error :&amp;nbsp;&lt;FONT color="#FF0000"&gt;&lt;SPAN&gt;Field 'CGE11 NIV1 RESEAU' not found.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;I would greatly apreciate any help!&amp;nbsp; I really don't like the idea of duplicating the entire script and just adding where functions.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Tue, 01 Apr 2025 10:45:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/QS-Binary-load-followed-by-inner-join-to-reduce-not-working/m-p/2512519#M105226</guid>
      <dc:creator>leenlart</dc:creator>
      <dc:date>2025-04-01T10:45:13Z</dc:date>
    </item>
    <item>
      <title>Re: QS Binary load followed by inner join to reduce not working</title>
      <link>https://community.qlik.com/t5/App-Development/QS-Binary-load-followed-by-inner-join-to-reduce-not-working/m-p/2512634#M105236</link>
      <description>&lt;P&gt;The field not found error in TEST2 makes me wonder about the field name. Is&amp;nbsp;[CGE11 NIV1 RESEAU] really a field in FAITS? Or is it in some dimension table? If it's not a field in FAITS then you would be adding the field to every row, no reduction at all.&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;</description>
      <pubDate>Tue, 01 Apr 2025 15:54:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/QS-Binary-load-followed-by-inner-join-to-reduce-not-working/m-p/2512634#M105236</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2025-04-01T15:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: QS Binary load followed by inner join to reduce not working</title>
      <link>https://community.qlik.com/t5/App-Development/QS-Binary-load-followed-by-inner-join-to-reduce-not-working/m-p/2512639#M105237</link>
      <description>&lt;P&gt;"&lt;SPAN&gt;To be clear, to correctly reduce all my data, would I then need to run through all other table to do this type of inner join on a field to keep only the data that pertains to my wanted set ?&amp;nbsp; (Ie, items, clients, ...) "&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;After you reduce the first table, then yes, you would need to Inner Join or Keep on the key field. I don't recommend using Join because you can generate extra rows if the source table has more than one row per value. For example, if you start&amp;nbsp; your reduction from the Fact table. Using Keep you can avoid this issue or even needing to identify the key field(s). Like this:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;temp:&lt;BR /&gt;Right Keep (orders)&lt;BR /&gt;LOAD * Resident customers;&lt;BR /&gt;Drop Table temp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If&amp;nbsp; you're worried about reload memory you can tune this slightly by LOADing just the key field instead of "*".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Here's an example to reduce this model.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rwunderlich_0-1743524895323.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/179230iED69266AB5CA1512/image-size/medium?v=v2&amp;amp;px=400" role="button" title="rwunderlich_0-1743524895323.png" alt="rwunderlich_0-1743524895323.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I've used Subroutines to reduce the duplicate code.&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;Sub PrintRowCount(_table, _msg)&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; Let _vRowCount = NoOfRows('$(_table)');&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; TRACE $(_msg) $(_table):$(_vRowCount);&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; Set _vRowCount=;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;End sub&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;Sub ReduceTable (_target, _source)&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; Call PrintRowCount('$(_target)', 'Before Reduce')&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; _Temp:&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; Right Keep([$(_target)])&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; Load * Resident [$(_source)];&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; Drop Table _Temp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; Call PrintRowCount('$(_target)', 'After Reduce')&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;End Sub&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;// Reduce to just the Customer named 'X-Site'&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;Call PrintRowCount('customers', 'Before Inner Join')&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;Inner Join (customers)&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;Load 'X-Site' as Customer AutoGenerate 1;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;Call PrintRowCount('customers', 'After Inner Join')&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;// Reduce the remaining tables, using the relationships.&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;// First table is the table we want to reduce,&amp;nbsp;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;//&amp;nbsp; second is the linked table we want to reduce from&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;Call ReduceTable('Regions', 'customers')&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;Call ReduceTable('orders', 'customers')&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;Call ReduceTable('products', 'orders')&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;Call ReduceTable('stock', 'products')&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;-Rob&lt;BR /&gt;&lt;A href="http://www.easyqlik.com" target="_blank" rel="noopener"&gt;http://www.easyqlik.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://masterssummit.com" target="_blank" rel="noopener"&gt;http://masterssummit.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://qlikviewcookbook.com" target="_blank" rel="noopener"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 01 Apr 2025 16:30:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/QS-Binary-load-followed-by-inner-join-to-reduce-not-working/m-p/2512639#M105237</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2025-04-01T16:30:53Z</dc:date>
    </item>
    <item>
      <title>Re: QS Binary load followed by inner join to reduce not working</title>
      <link>https://community.qlik.com/t5/App-Development/QS-Binary-load-followed-by-inner-join-to-reduce-not-working/m-p/2512641#M105238</link>
      <description>&lt;P&gt;I may be getting a little too clever here, but I've updated the SubRoutine to determine the key field(s) for the table pair and am only using those fields in the Keep Load.&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Sub PrintRowCount(_table, _msg)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; Let _vRowCount = NoOfRows('$(_table)');&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; TRACE $(_msg) $(_table):$(_vRowCount);&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; Set _vRowCount=;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;End sub&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Sub ReduceTable (_target, _source)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; Call KeysForTables('$(_target)', '$(_source)', vKeys)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; Trace Keys: $(vKeys);&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; Call PrintRowCount('$(_target)', 'Before Reduce')&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; _Temp:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; Right Keep([$(_target)])&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; Load $(vKeys) Resident [$(_source)];&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; Drop Table _Temp;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; Call PrintRowCount('$(_target)', 'After Reduce')&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;End Sub&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Sub KeysForTables(_table1, _table2, _vReturn)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; _TableFields:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; LOAD &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; FieldName(RecNo(), '$(_table1)') as FieldName&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; AutoGenerate NoOfFields('$(_table1)'); &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; Inner Join (_TableFields)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; LOAD &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; FieldName(RecNo(), '$(_table2)') as FieldName&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; AutoGenerate NoOfFields('$(_table2)');&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; _Keys:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;LOAD '[' &amp;amp; Concat(FieldName, '],[') &amp;amp; ']' as Keys&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; Resident _TableFields;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; Let _vReturn = Peek('Keys', -1, '_Keys');&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; Drop Table _Keys, _TableFields;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;End Sub&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;</description>
      <pubDate>Tue, 01 Apr 2025 17:25:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/QS-Binary-load-followed-by-inner-join-to-reduce-not-working/m-p/2512641#M105238</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2025-04-01T17:25:21Z</dc:date>
    </item>
    <item>
      <title>Re: QS Binary load followed by inner join to reduce not working</title>
      <link>https://community.qlik.com/t5/App-Development/QS-Binary-load-followed-by-inner-join-to-reduce-not-working/m-p/2512653#M105239</link>
      <description>Have you tried using Section Access to limit the data rows / fields that&lt;BR /&gt;users can see in you current app? Do you really need to make a copy of the&lt;BR /&gt;reduced data for other reasons?&lt;BR /&gt;&lt;BR /&gt;If you can't use Section Access, you could do a resident load on each&lt;BR /&gt;table needed, while selecting only the records that you need. Remember to&lt;BR /&gt;drop each one of the original tables that you reload this way.&lt;BR /&gt;&lt;BR /&gt;++José&lt;BR /&gt;</description>
      <pubDate>Tue, 01 Apr 2025 19:00:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/QS-Binary-load-followed-by-inner-join-to-reduce-not-working/m-p/2512653#M105239</guid>
      <dc:creator>diagonjope</dc:creator>
      <dc:date>2025-04-01T19:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: QS Binary load followed by inner join to reduce not working</title>
      <link>https://community.qlik.com/t5/App-Development/QS-Binary-load-followed-by-inner-join-to-reduce-not-working/m-p/2513548#M105353</link>
      <description>&lt;P&gt;Thanks for all your help!&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So my error was related to the field being misnamed.&amp;nbsp; (Duh...)&lt;/P&gt;&lt;P&gt;But your script really helped me to figure out my reductions.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I didn't go the way of section access because I would need to reduce the date and hide/show sheets.&amp;nbsp; This feels like a bigger pain then bianary, reduction, making spécific objects...&amp;nbsp; But it merits testing to get more familiar with section access.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;-Leen&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Apr 2025 15:37:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/QS-Binary-load-followed-by-inner-join-to-reduce-not-working/m-p/2513548#M105353</guid>
      <dc:creator>leenlart</dc:creator>
      <dc:date>2025-04-08T15:37:52Z</dc:date>
    </item>
  </channel>
</rss>

