<?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: Match function to solve? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Match-function-to-solve/m-p/567803#M478065</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am unable to edit script, able to do it through edit expression&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 31 Mar 2014 05:43:39 GMT</pubDate>
    <dc:creator>n1ef5ng1</dc:creator>
    <dc:date>2014-03-31T05:43:39Z</dc:date>
    <item>
      <title>Match function to solve?</title>
      <link>https://community.qlik.com/t5/QlikView/Match-function-to-solve/m-p/567799#M478061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all, I have two different main data table on my qlikview database.&lt;/P&gt;&lt;P&gt;Throughput (Data) --&amp;gt; Market_Country (Dimension)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Transit (Data) --&amp;gt; Market_Country_TXIT (Dimension)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basically this shows that these data are somehow not link to the country.&lt;/P&gt;&lt;P&gt;This gives me the problem as when I tried to link both of them up in a table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Market_Country and Market_Country_TXIT, this two tables shares the same content, basically countries all over the world.&lt;/P&gt;&lt;P&gt;I would want to create a table that list out all the countries with expression on throughput and transit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Group_Country_Code as Dimension with sum(Throughput) and sum(Transit) will give me correct value for throughput but not transit&lt;/P&gt;&lt;P&gt;Group_Country_Code.Transit as Dimension with sum(Throughput) and sum(Transit) will give me correct value for transit but not throughput.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there anyway I can merge, mix, grind, match, wildmatch Group Country Code and Group Country Code transit since both of them carry the same fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried Match(GroupCountryCode,GroupCountryCode.Transit,GroupCountryCode) but fail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any help ( i cnt edit script, have to do in dimension)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2014 09:36:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Match-function-to-solve/m-p/567799#M478061</guid>
      <dc:creator>n1ef5ng1</dc:creator>
      <dc:date>2014-03-27T09:36:03Z</dc:date>
    </item>
    <item>
      <title>Re: Match function to solve?</title>
      <link>https://community.qlik.com/t5/QlikView/Match-function-to-solve/m-p/567800#M478062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;anybody can help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2014 04:09:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Match-function-to-solve/m-p/567800#M478062</guid>
      <dc:creator>n1ef5ng1</dc:creator>
      <dc:date>2014-03-31T04:09:35Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Match function to solve?</title>
      <link>https://community.qlik.com/t5/QlikView/Match-function-to-solve/m-p/567801#M478063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Attached file example.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2014 04:41:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Match-function-to-solve/m-p/567801#M478063</guid>
      <dc:creator>n1ef5ng1</dc:creator>
      <dc:date>2014-03-31T04:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: Match function to solve?</title>
      <link>https://community.qlik.com/t5/QlikView/Match-function-to-solve/m-p/567802#M478064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the two files contain the same or similar sets of data, I would concatenate them into a single file. If the field names differ, then you will need to alias the fields in one or both of the load statements to align them. Something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Market_Country As Country,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AnotherField As Another,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; From Table1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Market_Country_TXIT &lt;/SPAN&gt;As Country,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Some Other Field] As Another,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; From Table2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2014 05:32:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Match-function-to-solve/m-p/567802#M478064</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2014-03-31T05:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: Match function to solve?</title>
      <link>https://community.qlik.com/t5/QlikView/Match-function-to-solve/m-p/567803#M478065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am unable to edit script, able to do it through edit expression&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2014 05:43:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Match-function-to-solve/m-p/567803#M478065</guid>
      <dc:creator>n1ef5ng1</dc:creator>
      <dc:date>2014-03-31T05:43:39Z</dc:date>
    </item>
  </channel>
</rss>

