<?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: between texts function in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/between-texts-function/m-p/1413777#M427307</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter,&lt;/P&gt;&lt;P&gt;this solution will work, maybe the lengh would vary but that I can easily control in the script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Thanks a lot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rodolfo Souza&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Aug 2017 16:29:25 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-08-17T16:29:25Z</dc:date>
    <item>
      <title>between texts function</title>
      <link>https://community.qlik.com/t5/QlikView/between-texts-function/m-p/1413772#M427302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;I have a scenario where I use a query in a SQL database using "between" function:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; where Field1 between Field2 and Field3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Qlik script, intervalmatch works fine for numeric fields, but in my case I need to match between two strings.&lt;/P&gt;&lt;P&gt;Had Anyone faced it before ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rodolfo Souza&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Aug 2017 20:15:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/between-texts-function/m-p/1413772#M427302</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-08-16T20:15:58Z</dc:date>
    </item>
    <item>
      <title>Re: between texts function</title>
      <link>https://community.qlik.com/t5/QlikView/between-texts-function/m-p/1413773#M427303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post an example with expected output? We might be able to.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Aug 2017 21:08:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/between-texts-function/m-p/1413773#M427303</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2017-08-16T21:08:43Z</dc:date>
    </item>
    <item>
      <title>Re: between texts function</title>
      <link>https://community.qlik.com/t5/QlikView/between-texts-function/m-p/1413774#M427304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for replying, it would be an example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Intervals:&lt;/P&gt;&lt;P&gt;BEGIN&amp;nbsp;&amp;nbsp; END&lt;/P&gt;&lt;P&gt;41&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4105001&lt;/P&gt;&lt;P&gt;57&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5703007&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table (to be matched):&lt;/P&gt;&lt;P&gt;FIELD&lt;/P&gt;&lt;P&gt;4102004&lt;/P&gt;&lt;P&gt;5701005&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when I execute the query at the database:&lt;/P&gt;&lt;P&gt;select * from Intervals inner join Table&lt;/P&gt;&lt;P&gt;on (FIELD between BEGIN and END)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got this result:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BEGIN&amp;nbsp; END&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;4102004&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;41&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4105001&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;5701005&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;57&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5703007&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;This happens because they are text fields, and thats correct and expected by the requirement.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Previsously&amp;nbsp; I got access to the database using ODBC, but now I got the individual tables downloaded into my envirorment and I'd like to do this using the script in Qlik.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Does anybody know a way do that?&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Rodolfo Souza&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2017 12:39:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/between-texts-function/m-p/1413774#M427304</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-08-17T12:39:34Z</dc:date>
    </item>
    <item>
      <title>Re: between texts function</title>
      <link>https://community.qlik.com/t5/QlikView/between-texts-function/m-p/1413775#M427305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use interval Match in Qlikview. Read here:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/93674"&gt;Interval Match or Inline load&lt;/A&gt;&lt;/P&gt;&lt;P&gt;And ref help:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.qlik.com/en-US/qlikview/12.1/Subsystems/Client/Content/Scripting/ScriptPrefixes/IntervalMatch.htm" title="http://help.qlik.com/en-US/qlikview/12.1/Subsystems/Client/Content/Scripting/ScriptPrefixes/IntervalMatch.htm"&gt;IntervalMatch ‒ QlikView&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2017 15:38:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/between-texts-function/m-p/1413775#M427305</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2017-08-17T15:38:04Z</dc:date>
    </item>
    <item>
      <title>Re: between texts function</title>
      <link>https://community.qlik.com/t5/QlikView/between-texts-function/m-p/1413776#M427306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There may be an easy solution to this. Check your intervals. If they work like account ranges (which are numerical by default) you could expand all border values to the full 7 digits and use a purely numerical INTERVALMATCH again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, your Intervals table could become something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Intervals:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;BEGIN&amp;nbsp;&amp;nbsp; END&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;4100000 4105001&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;5700000 5703007&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;This could be accomplished during the load from your external data source.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2017 16:12:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/between-texts-function/m-p/1413776#M427306</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2017-08-17T16:12:13Z</dc:date>
    </item>
    <item>
      <title>Re: between texts function</title>
      <link>https://community.qlik.com/t5/QlikView/between-texts-function/m-p/1413777#M427307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter,&lt;/P&gt;&lt;P&gt;this solution will work, maybe the lengh would vary but that I can easily control in the script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Thanks a lot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rodolfo Souza&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2017 16:29:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/between-texts-function/m-p/1413777#M427307</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-08-17T16:29:25Z</dc:date>
    </item>
  </channel>
</rss>

