<?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: LEFT JOIN LOAD FOR A GAP in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/LEFT-JOIN-LOAD-FOR-A-GAP/m-p/1861954#M1216167</link>
    <description>&lt;P&gt;Espectacular explanation for a begginer like me, thank you very much Marco.&lt;/P&gt;</description>
    <pubDate>Mon, 22 Nov 2021 09:07:20 GMT</pubDate>
    <dc:creator>lmenendez_grupo_pinero</dc:creator>
    <dc:date>2021-11-22T09:07:20Z</dc:date>
    <item>
      <title>LEFT JOIN LOAD FOR A GAP</title>
      <link>https://community.qlik.com/t5/QlikView/LEFT-JOIN-LOAD-FOR-A-GAP/m-p/1861502#M1216153</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I wonder if there is possible to make a left join load with gaps instead of finding the exact value.&lt;/P&gt;
&lt;P&gt;For exemple I can join table like :&lt;/P&gt;
&lt;P&gt;100,A&lt;/P&gt;
&lt;P&gt;110,B&lt;/P&gt;
&lt;P&gt;120,C&lt;/P&gt;
&lt;P&gt;130,D ...&lt;/P&gt;
&lt;P&gt;but if I have a value '104' I wil not have a letter.&lt;/P&gt;
&lt;P&gt;I am looking for the way to left join load letter 'A' to all the values betwen 100 and 109, letter 'B' to all teh values betwen 110 and 119 , and so on.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is it possible?&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 14:23:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LEFT-JOIN-LOAD-FOR-A-GAP/m-p/1861502#M1216153</guid>
      <dc:creator>lmenendez_grupo_pinero</dc:creator>
      <dc:date>2021-11-19T14:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: LEFT JOIN LOAD FOR A GAP</title>
      <link>https://community.qlik.com/t5/QlikView/LEFT-JOIN-LOAD-FOR-A-GAP/m-p/1861504#M1216154</link>
      <description>&lt;P&gt;Take a look at &lt;A href="https://help.qlik.com/en-US/qlikview/May2021/Subsystems/Client/Content/QV_QlikView/Scripting/ScriptPrefixes/IntervalMatch.htm" target="_blank"&gt;IntervalMatch ‒ QlikView.&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 14:30:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LEFT-JOIN-LOAD-FOR-A-GAP/m-p/1861504#M1216154</guid>
      <dc:creator>stevejoyce</dc:creator>
      <dc:date>2021-11-19T14:30:50Z</dc:date>
    </item>
    <item>
      <title>Re: LEFT JOIN LOAD FOR A GAP</title>
      <link>https://community.qlik.com/t5/QlikView/LEFT-JOIN-LOAD-FOR-A-GAP/m-p/1861518#M1216155</link>
      <description>&lt;P&gt;Quite difficult to understand the command but I will try it , Thank you very much.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 14:45:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LEFT-JOIN-LOAD-FOR-A-GAP/m-p/1861518#M1216155</guid>
      <dc:creator>lmenendez_grupo_pinero</dc:creator>
      <dc:date>2021-11-19T14:45:50Z</dc:date>
    </item>
    <item>
      <title>Re: LEFT JOIN LOAD FOR A GAP</title>
      <link>https://community.qlik.com/t5/QlikView/LEFT-JOIN-LOAD-FOR-A-GAP/m-p/1861588#M1216160</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;one example:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;tabLetterTemp:
LOAD * Inline [
Val, Letter
100,A
110,B
120,C
130,D
150,E
180,F
];

tabLetter:
LOAD Val as MinVal,
     Alt(Previous(Val)-1, 1000) as MaxVal,
     Letter    
Resident tabLetterTemp
Order By Val Desc;

DROP Table tabLetterTemp;

table1:
LOAD Ceil(Rand()*100+100) as Value
AutoGenerate 50;

Left Join (table1)
IntervalMatch (Value)
LOAD MinVal, MaxVal     
Resident tabLetter;

Left Join (table1)
LOAD * Resident tabLetter;

DROP Fields MinVal, MaxVal From table1;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MarcoWedel_0-1637340593020.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/67049i43B274B823406DA1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MarcoWedel_0-1637340593020.png" alt="MarcoWedel_0-1637340593020.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MarcoWedel_1-1637340600623.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/67050iC7D95891FAB8519C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MarcoWedel_1-1637340600623.png" alt="MarcoWedel_1-1637340600623.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;hope this helps&lt;/P&gt;
&lt;P&gt;Marco&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 16:50:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LEFT-JOIN-LOAD-FOR-A-GAP/m-p/1861588#M1216160</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2021-11-19T16:50:53Z</dc:date>
    </item>
    <item>
      <title>Re: LEFT JOIN LOAD FOR A GAP</title>
      <link>https://community.qlik.com/t5/QlikView/LEFT-JOIN-LOAD-FOR-A-GAP/m-p/1861954#M1216167</link>
      <description>&lt;P&gt;Espectacular explanation for a begginer like me, thank you very much Marco.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Nov 2021 09:07:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LEFT-JOIN-LOAD-FOR-A-GAP/m-p/1861954#M1216167</guid>
      <dc:creator>lmenendez_grupo_pinero</dc:creator>
      <dc:date>2021-11-22T09:07:20Z</dc:date>
    </item>
    <item>
      <title>Re: LEFT JOIN LOAD FOR A GAP</title>
      <link>https://community.qlik.com/t5/QlikView/LEFT-JOIN-LOAD-FOR-A-GAP/m-p/1862298#M1216174</link>
      <description>&lt;P&gt;You're welcome.&lt;BR /&gt;Please close your thread by accepting an answer as solution.&lt;BR /&gt;Thanks&lt;BR /&gt;Marco&lt;/P&gt;</description>
      <pubDate>Mon, 22 Nov 2021 21:24:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LEFT-JOIN-LOAD-FOR-A-GAP/m-p/1862298#M1216174</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2021-11-22T21:24:18Z</dc:date>
    </item>
  </channel>
</rss>

