<?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: Joining of two tables using AS in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Joining-of-two-tables-using-AS/m-p/720401#M1069655</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. and 2. both load the same data. But you should NOT, repeat NOT!!!!, use a key field in the count function. So DO NOT USE the field Name in the count function. Qlikview CANNOT know from which table you want the count. Therefore the behaviour of the count function over a key field is UNDEFINED. Meaning anything can happen. Your car may pee on your cat. Or your fridge may take your front door to the movies. DO NOT USE a key field in the count function!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Aug 2014 10:57:14 GMT</pubDate>
    <dc:creator>Gysbert_Wassenaar</dc:creator>
    <dc:date>2014-08-21T10:57:14Z</dc:date>
    <item>
      <title>Joining of two tables using AS</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-of-two-tables-using-AS/m-p/720396#M1069650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;I am having two tables Table A and Table B &lt;/P&gt;&lt;P&gt;Table A have field 'Name' and table B having 'Name1', Count of 'Name' in Table A is 1000(example)&lt;/P&gt;&lt;P&gt;and Count of 'Name1' in Table B is 500(example).Both 'Name' and 'Name1' are having some common fields,&lt;/P&gt;&lt;P&gt;when I written 'Name1 as Name' association occured and two tables linked,&lt;/P&gt;&lt;P&gt;but the question is number is different when I change loading order of tables i.e., when I load first Table A&amp;nbsp; then Table B it showing one value of count(Name) and if I load Table B then Table A it showing different value of count(Name).&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Aug 2014 10:15:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-of-two-tables-using-AS/m-p/720396#M1069650</guid>
      <dc:creator />
      <dc:date>2014-08-21T10:15:13Z</dc:date>
    </item>
    <item>
      <title>Re: Joining of two tables using AS</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-of-two-tables-using-AS/m-p/720397#M1069651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you use Name as the field to associate the tables, i.e. as a key field, then you shouldn't use it in the count function. That's because Qlikview cannot know from which table you want the count. Use another field to calculate the count. If you want the total distinct count of Name over all tables you can use FieldValueCount('Name') instead.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Aug 2014 10:20:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-of-two-tables-using-AS/m-p/720397#M1069651</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2014-08-21T10:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: Joining of two tables using AS</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-of-two-tables-using-AS/m-p/720398#M1069652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I will write scenario here&lt;/P&gt;&lt;P&gt;1.&lt;/P&gt;&lt;P&gt;TableA:&lt;/P&gt;&lt;P&gt;load &lt;/P&gt;&lt;P&gt;Name&lt;/P&gt;&lt;P&gt;from abc.qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TableB:&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;Name1 as Name&lt;/P&gt;&lt;P&gt;from xyz.qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.&lt;/P&gt;&lt;P&gt;TableB:&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;Name1 as Name&lt;/P&gt;&lt;P&gt;from xyz.qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TableA:&lt;/P&gt;&lt;P&gt;load &lt;/P&gt;&lt;P&gt;Name&lt;/P&gt;&lt;P&gt;from abc.qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;does 1 and 2 are same or not, please explain. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Aug 2014 10:32:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-of-two-tables-using-AS/m-p/720398#M1069652</guid>
      <dc:creator />
      <dc:date>2014-08-21T10:32:13Z</dc:date>
    </item>
    <item>
      <title>Re: Joining of two tables using AS</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-of-two-tables-using-AS/m-p/720399#M1069653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the example you posted you will end up with only one table with only one field: Name. If two tables have exactly the same fields the data will be concatenated into one table. So in your example 1. and 2. will have the same result. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Aug 2014 10:38:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-of-two-tables-using-AS/m-p/720399#M1069653</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2014-08-21T10:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: Joining of two tables using AS</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-of-two-tables-using-AS/m-p/720400#M1069654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I interpreted wrongly in above example, please see the below one&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;1.&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;TableA:&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;load&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Name,&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;city,&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;state,&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;country&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;from abc.qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;TableB:&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;load&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Name1 as Name,&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;pin,&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;phone,&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;street&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;from xyz.qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;2.&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;TableB:&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;load&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Name1 as Name,&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;pin,&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;phone,&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;street&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;from xyz.qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;TableA:&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;load&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Name,&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;city,&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;state,&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;country&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;from abc.qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;does 1 and 2 are same or not, please explain.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Aug 2014 10:47:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-of-two-tables-using-AS/m-p/720400#M1069654</guid>
      <dc:creator />
      <dc:date>2014-08-21T10:47:45Z</dc:date>
    </item>
    <item>
      <title>Re: Joining of two tables using AS</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-of-two-tables-using-AS/m-p/720401#M1069655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. and 2. both load the same data. But you should NOT, repeat NOT!!!!, use a key field in the count function. So DO NOT USE the field Name in the count function. Qlikview CANNOT know from which table you want the count. Therefore the behaviour of the count function over a key field is UNDEFINED. Meaning anything can happen. Your car may pee on your cat. Or your fridge may take your front door to the movies. DO NOT USE a key field in the count function!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Aug 2014 10:57:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-of-two-tables-using-AS/m-p/720401#M1069655</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2014-08-21T10:57:14Z</dc:date>
    </item>
  </channel>
</rss>

