<?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: Can I specify table name in an expression? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Can-I-specify-table-name-in-an-expression/m-p/1077657#M944060</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;‌Peter you don't have to apologize. I have learned so many things from you and you pointing out that something Isn't right is always a chance to learn something new from the discussion. I hope to continue learning from you and other experts, even if it comes at the cost of making mistakes&amp;nbsp;&amp;nbsp; .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Jan 2016 00:25:07 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2016-01-13T00:25:07Z</dc:date>
    <item>
      <title>Can I specify table name in an expression?</title>
      <link>https://community.qlik.com/t5/QlikView/Can-I-specify-table-name-in-an-expression/m-p/1077652#M944055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Just a quick question, can I specify table name in an expression?&lt;/P&gt;&lt;P&gt;For example if I got two tables (A and B) that all have the same column called invoice_number, and I want to specify number of invoice_number from column A only. How to do that? Should I have to load the same column twice( I means something like following in my script):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table_A:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Customer_name,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Invoice_Number,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Invoice_Number as&amp;nbsp;&amp;nbsp;&amp;nbsp; Invoice_Number_DUP&lt;/P&gt;&lt;P&gt;from xxxxx.qvd (qvd)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table_B:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Sales_name,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Invoice_Number&lt;/P&gt;&lt;P&gt;from yyyyy.qvd (qvd)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the expression is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Num&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;count&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;( &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Invoice_Number_DUP&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;),'###,###,###') &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jan 2016 23:19:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Can-I-specify-table-name-in-an-expression/m-p/1077652#M944055</guid>
      <dc:creator />
      <dc:date>2016-01-12T23:19:37Z</dc:date>
    </item>
    <item>
      <title>Re: Can I specify table name in an expression?</title>
      <link>https://community.qlik.com/t5/QlikView/Can-I-specify-table-name-in-an-expression/m-p/1077653#M944056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;‌Without needing to duplicate you can do something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Count({&amp;lt;Sales_name = {"=Len(Trim(Sales_name)) = 0"}&amp;gt;}Invoice_Number)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Count({&amp;lt;Customer_name = {'*?'}&amp;gt;} Invoice_Number)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jan 2016 23:41:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Can-I-specify-table-name-in-an-expression/m-p/1077653#M944056</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-01-12T23:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: Can I specify table name in an expression?</title>
      <link>https://community.qlik.com/t5/QlikView/Can-I-specify-table-name-in-an-expression/m-p/1077654#M944057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Elim,&lt;/P&gt;&lt;P&gt;in your simplified data model you could just count the number of Customer_name. On condition that Customer_name is never NULL. Like in:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;=Count(Customer_name)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Edit] replaced Sales_name with Customer_name. We're looking at Table A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jan 2016 23:52:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Can-I-specify-table-name-in-an-expression/m-p/1077654#M944057</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2016-01-12T23:52:30Z</dc:date>
    </item>
    <item>
      <title>Re: Can I specify table name in an expression?</title>
      <link>https://community.qlik.com/t5/QlikView/Can-I-specify-table-name-in-an-expression/m-p/1077655#M944058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;‌I see what you mean. But i thought that was the requirement, unless I have mis-read the issue. I am on a phone device which makes things little more complicated.&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jan 2016 23:59:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Can-I-specify-table-name-in-an-expression/m-p/1077655#M944058</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-01-12T23:59:09Z</dc:date>
    </item>
    <item>
      <title>Re: Can I specify table name in an expression?</title>
      <link>https://community.qlik.com/t5/QlikView/Can-I-specify-table-name-in-an-expression/m-p/1077656#M944059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry Sunny, ignore the email. I adjusted my response. I may have misread your post.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jan 2016 00:06:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Can-I-specify-table-name-in-an-expression/m-p/1077656#M944059</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2016-01-13T00:06:33Z</dc:date>
    </item>
    <item>
      <title>Re: Can I specify table name in an expression?</title>
      <link>https://community.qlik.com/t5/QlikView/Can-I-specify-table-name-in-an-expression/m-p/1077657#M944060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;‌Peter you don't have to apologize. I have learned so many things from you and you pointing out that something Isn't right is always a chance to learn something new from the discussion. I hope to continue learning from you and other experts, even if it comes at the cost of making mistakes&amp;nbsp;&amp;nbsp; .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jan 2016 00:25:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Can-I-specify-table-name-in-an-expression/m-p/1077657#M944060</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-01-13T00:25:07Z</dc:date>
    </item>
    <item>
      <title>Re: Can I specify table name in an expression?</title>
      <link>https://community.qlik.com/t5/QlikView/Can-I-specify-table-name-in-an-expression/m-p/1077658#M944061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Sunny.&lt;/P&gt;&lt;P&gt;Nevertheless, I'll be more careful next time &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jan 2016 00:32:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Can-I-specify-table-name-in-an-expression/m-p/1077658#M944061</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2016-01-13T00:32:52Z</dc:date>
    </item>
  </channel>
</rss>

