<?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 matching employees in qlikview in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/matching-employees-in-qlikview/m-p/1830076#M15469</link>
    <description>&lt;P&gt;i have server employee list in excel sheet .. and i load data like this&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Employee:
LOAD 
 
    EmpID,     
     lower(SUBFIELD([Email ID],'@',1))  AS EmailID     
    
FROM
[data\EmpList\EList*.xlsx]
(ooxml, embedded labels, table is [Sheet - 1]);
&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and the other table is&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;BoxUsage:
LOAD DisplayName as FullName,    
      lower(SUBFIELD(EmailAddress,'@',1)) AS EmailID, 
     left(Usage, Index(Usage, 'B')) as C_InUnits,
     CurrentSize,
     MailMonth,
     MailYear
     FROM
[data\Mail Box Usage\MUsage-*.xlsx]
(ooxml, embedded labels, table is Sheet1);

left Join(Employee)
LOAD
*

Resident BoxUsage;
Drop table BoxUsage;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So here 2 table is link with EmailID..&amp;nbsp; and all data of BoxUsae now in employee table and i want only those emailID in straight table which is in Employeetable ... in BoxUsage some emails starts from upper case but in employee table all emails start with lower case ... so i want only which start from lower case ..&amp;nbsp;&lt;/P&gt;&lt;P&gt;but now i get data also upper case.&lt;/P&gt;&lt;P&gt;how i resolve it.. 2&lt;/P&gt;</description>
    <pubDate>Fri, 20 Aug 2021 06:32:01 GMT</pubDate>
    <dc:creator>capriconuser</dc:creator>
    <dc:date>2021-08-20T06:32:01Z</dc:date>
    <item>
      <title>matching employees in qlikview</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/matching-employees-in-qlikview/m-p/1830076#M15469</link>
      <description>&lt;P&gt;i have server employee list in excel sheet .. and i load data like this&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Employee:
LOAD 
 
    EmpID,     
     lower(SUBFIELD([Email ID],'@',1))  AS EmailID     
    
FROM
[data\EmpList\EList*.xlsx]
(ooxml, embedded labels, table is [Sheet - 1]);
&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and the other table is&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;BoxUsage:
LOAD DisplayName as FullName,    
      lower(SUBFIELD(EmailAddress,'@',1)) AS EmailID, 
     left(Usage, Index(Usage, 'B')) as C_InUnits,
     CurrentSize,
     MailMonth,
     MailYear
     FROM
[data\Mail Box Usage\MUsage-*.xlsx]
(ooxml, embedded labels, table is Sheet1);

left Join(Employee)
LOAD
*

Resident BoxUsage;
Drop table BoxUsage;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So here 2 table is link with EmailID..&amp;nbsp; and all data of BoxUsae now in employee table and i want only those emailID in straight table which is in Employeetable ... in BoxUsage some emails starts from upper case but in employee table all emails start with lower case ... so i want only which start from lower case ..&amp;nbsp;&lt;/P&gt;&lt;P&gt;but now i get data also upper case.&lt;/P&gt;&lt;P&gt;how i resolve it.. 2&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2021 06:32:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/matching-employees-in-qlikview/m-p/1830076#M15469</guid>
      <dc:creator>capriconuser</dc:creator>
      <dc:date>2021-08-20T06:32:01Z</dc:date>
    </item>
    <item>
      <title>Re: matching employees in qlikview</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/matching-employees-in-qlikview/m-p/1830121#M15472</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try like below&lt;/P&gt;&lt;P&gt;Employee:&lt;BR /&gt;LOAD&lt;BR /&gt;&lt;BR /&gt;EmpID,&lt;BR /&gt;lower(SUBFIELD([Email ID],'@',1)) AS EmailID,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1 as EmpEmailFlag&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;FROM&lt;BR /&gt;[data\EmpList\EList*.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is [Sheet - 1]);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In straight table, in exp, try like below&lt;/P&gt;&lt;P&gt;Dim: EmailID&lt;/P&gt;&lt;P&gt;Count({&amp;lt;EmpEmailFlag={1}&amp;gt;}urexpression)&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;-- its gives only employee table email info&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2021 08:53:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/matching-employees-in-qlikview/m-p/1830121#M15472</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2021-08-20T08:53:02Z</dc:date>
    </item>
    <item>
      <title>Re: matching employees in qlikview</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/matching-employees-in-qlikview/m-p/1830175#M15479</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/17935"&gt;@MayilVahanan&lt;/a&gt;&amp;nbsp;i am also adding columns from&amp;nbsp;MUsage.. is there any method except putting flag&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and also now all columns plus MUsage table columns also in employee table&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2021 11:13:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/matching-employees-in-qlikview/m-p/1830175#M15479</guid>
      <dc:creator>capriconuser</dc:creator>
      <dc:date>2021-08-20T11:13:36Z</dc:date>
    </item>
    <item>
      <title>Re: matching employees in qlikview</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/matching-employees-in-qlikview/m-p/1830248#M15483</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;Flag is for indication whether the value is coming from this table or not. you can add columns from MUsage table also in the same table&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2021 15:37:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/matching-employees-in-qlikview/m-p/1830248#M15483</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2021-08-20T15:37:10Z</dc:date>
    </item>
  </channel>
</rss>

