<?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 Identifying Missing Entries, Additional Entries, and differences in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Identifying-Missing-Entries-Additional-Entries-and-differences/m-p/1823193#M1213757</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="GST_DIFF.JPG" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/58831i3644E805E67BC743/image-size/large?v=v2&amp;amp;px=999" role="button" title="GST_DIFF.JPG" alt="GST_DIFF.JPG" /&gt;&lt;/span&gt;I have 3 excel sheets which contains large amount of data. Sample shown above&amp;nbsp; ( I can combine all the three sheets into Single sheet as the Field names are common for all the three sheets)&lt;/P&gt;&lt;P&gt;Namely:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;T1.PURCHAS_BILLS.XLS&amp;nbsp; :&lt;/STRONG&gt; This sheet contains All purchase bills as per accounting books&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;T2.VENDOR_SUBMITTED_GSTR.XLS&lt;/STRONG&gt; : This sheet contains All vendors submitted bills to GSTRN Portal&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;T3.ACTUAL_FILED_GSTR.XLS:&lt;/STRONG&gt; This sheet contains actual filing submitted by owner to GSTRN Portal&lt;/P&gt;&lt;P&gt;Some times the vendor will missed to submit GSTRN details to GSTRN Portal. Some times the actual owner missed to submit GSTRN details to GSTRN Portal&lt;/P&gt;&lt;P&gt;I need to identify the missing entries. For easy visualisation, I have manually sorted and highlighted as DIFFERNCES&lt;/P&gt;&lt;P&gt;Is there any way I can take these data into Qlikview and identify missing entries?&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
    <pubDate>Mon, 19 Jul 2021 21:18:51 GMT</pubDate>
    <dc:creator>ramsqlik</dc:creator>
    <dc:date>2021-07-19T21:18:51Z</dc:date>
    <item>
      <title>Identifying Missing Entries, Additional Entries, and differences</title>
      <link>https://community.qlik.com/t5/QlikView/Identifying-Missing-Entries-Additional-Entries-and-differences/m-p/1823193#M1213757</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="GST_DIFF.JPG" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/58831i3644E805E67BC743/image-size/large?v=v2&amp;amp;px=999" role="button" title="GST_DIFF.JPG" alt="GST_DIFF.JPG" /&gt;&lt;/span&gt;I have 3 excel sheets which contains large amount of data. Sample shown above&amp;nbsp; ( I can combine all the three sheets into Single sheet as the Field names are common for all the three sheets)&lt;/P&gt;&lt;P&gt;Namely:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;T1.PURCHAS_BILLS.XLS&amp;nbsp; :&lt;/STRONG&gt; This sheet contains All purchase bills as per accounting books&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;T2.VENDOR_SUBMITTED_GSTR.XLS&lt;/STRONG&gt; : This sheet contains All vendors submitted bills to GSTRN Portal&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;T3.ACTUAL_FILED_GSTR.XLS:&lt;/STRONG&gt; This sheet contains actual filing submitted by owner to GSTRN Portal&lt;/P&gt;&lt;P&gt;Some times the vendor will missed to submit GSTRN details to GSTRN Portal. Some times the actual owner missed to submit GSTRN details to GSTRN Portal&lt;/P&gt;&lt;P&gt;I need to identify the missing entries. For easy visualisation, I have manually sorted and highlighted as DIFFERNCES&lt;/P&gt;&lt;P&gt;Is there any way I can take these data into Qlikview and identify missing entries?&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jul 2021 21:18:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identifying-Missing-Entries-Additional-Entries-and-differences/m-p/1823193#M1213757</guid>
      <dc:creator>ramsqlik</dc:creator>
      <dc:date>2021-07-19T21:18:51Z</dc:date>
    </item>
    <item>
      <title>Re: Identifying Missing Entries, Additional Entries, and differences</title>
      <link>https://community.qlik.com/t5/QlikView/Identifying-Missing-Entries-Additional-Entries-and-differences/m-p/1823211#M1213760</link>
      <description>&lt;P&gt;One solution is,&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;tab1:
LOAD *, 'T1' As Flag, GSTIN&amp;amp;'@'&amp;amp;[Vendor Name]&amp;amp;'@'&amp;amp;[Invoice Date] As Key;
LOAD * INLINE [
    No, GSTIN, Vendor Name, Invoice Date
    1, 27AAA, Max India Pvt Ltd, 3/4/2020
    2, 33AABF, Safron Transport, 5/4/2020
    3, 33AASC, Arun Trading, 10/4/2020
    4, 33AABF, Safron Transport, 11/4/2020
];

tab2:
LOAD *, 'T2' As Flag, GSTIN&amp;amp;'@'&amp;amp;[Vendor Name]&amp;amp;'@'&amp;amp;[Invoice Date] As Key;
LOAD * INLINE [
    No, GSTIN, Vendor Name, Invoice Date
    1, 27AAA, Max India Pvt Ltd, 3/4/2020
    2, 33AABF, Safron Transport, 5/4/2020
    3, 33AASC, Arun Trading, 10/4/2020
];

tab3:
LOAD *, 'T3' As Flag, GSTIN&amp;amp;'@'&amp;amp;[Vendor Name]&amp;amp;'@'&amp;amp;[Invoice Date] As Key;
LOAD * INLINE [
    No, GSTIN, Vendor Name, Invoice Date
    1, 33AASC, Arun Trading, 10/4/2020
    2, 33AABF, Safron Transport, 11/4/2020
];

Result:
NoConcatenate
LOAD Key, PurgeChar('T1T2T3',Concat(DISTINCT Flag)) As Result
Resident tab1
Group By Key;

Left Join(Result)
LOAD Key, If(Len(Trim(Result))&amp;gt;0,'T'&amp;amp;Result&amp;amp;'.MISSING') As DIFFERENCES
Resident Result;&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 20 Jul 2021 03:04:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identifying-Missing-Entries-Additional-Entries-and-differences/m-p/1823211#M1213760</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2021-07-20T03:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: Identifying Missing Entries, Additional Entries, and differences</title>
      <link>https://community.qlik.com/t5/QlikView/Identifying-Missing-Entries-Additional-Entries-and-differences/m-p/1823213#M1213761</link>
      <description>&lt;P&gt;Output:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="commQV77.PNG" style="width: 476px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/58834i25B6524FFB620BDE/image-size/large?v=v2&amp;amp;px=999" role="button" title="commQV77.PNG" alt="commQV77.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jul 2021 03:05:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identifying-Missing-Entries-Additional-Entries-and-differences/m-p/1823213#M1213761</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2021-07-20T03:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: Identifying Missing Entries, Additional Entries, and differences</title>
      <link>https://community.qlik.com/t5/QlikView/Identifying-Missing-Entries-Additional-Entries-and-differences/m-p/1823361#M1213773</link>
      <description>&lt;P&gt;Thanks for your help and appreciate. My applogies if I ask some novice question as I am trying to learn Qlikview and unfamiliar with all advanced scripting.&lt;/P&gt;&lt;P&gt;Sorry to make you to create the entire data set. My applogies.&lt;/P&gt;&lt;P&gt;I have added 3 excel file so that you can look at the data easily.&lt;/P&gt;&lt;P&gt;&lt;A title="DROPBOX SHARE" href="https://www.dropbox.com/sh/4eobjefncj8hbz7/AADCHQRUOnXHRxF-cqFzXHHHa?dl=0" target="_self"&gt;DROPBOX SHARE&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to recreate your script as below&lt;/P&gt;&lt;LI-CODE lang="php"&gt;tab1: 
LOAD'T1' As Flag, No, 
     GSTIN, 
     MM_YYYY, 
     VENDOR_NAME, 
     INVOICE_DATE as Key, 
     INVOICE_AMOUNT, 
     TAXABLE_VALUE, 
     IGST, 
     CGST, 
     SGST, 
     CESS, 
     BILL_TYPE
FROM
[C:\Temp\Qlik\T1.PURCHAS_BILLS.xlsx] 
(ooxml, embedded labels) ;

tab2:
LOAD 'T2' As Flag, No, 
     GSTIN, 
     MM_YYYY, 
     VENDOR_NAME, 
     INVOICE_DATE as Key, 
     INVOICE_AMOUNT, 
     TAXABLE_VALUE, 
     IGST, 
     CGST, 
     SGST, 
     CESS, 
     BILL_TYPE
FROM
[C:\Temp\Qlik\T2.VENDOR_SUBMITTED_GSTR.xlsx]
(ooxml, embedded labels, table is Sheet1);

tab3:
LOAD 'T3' As Flag, No, 
     GSTIN, 
     MM_YYYY, 
     VENDOR_NAME, 
     INVOICE_DATE as Key, 
     INVOICE_AMOUNT, 
     TAXABLE_VALUE, 
     IGST, 
     CGST, 
     SGST, 
     CESS, 
     BILL_TYPE
FROM
[C:\Temp\Qlik\T3.ACTUAL_FILED_GSTR.xlsx]
(ooxml, embedded labels, table is Sheet1);


Result:
NoConcatenate
LOAD Key, PurgeChar('T1T2T3',Concat(DISTINCT Flag)) As Result
Resident tab1
Group By Key;

Left Join(Result)
LOAD Key, If(Len(Trim(Result))&amp;gt;0,'T'&amp;amp;Result&amp;amp;'.MISSING') As DIFFERENCES
Resident Result;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For Final Result Table, what are the dimensions, and expressions we should assign?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jul 2021 16:14:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identifying-Missing-Entries-Additional-Entries-and-differences/m-p/1823361#M1213773</guid>
      <dc:creator>ramsqlik</dc:creator>
      <dc:date>2021-07-20T16:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: Identifying Missing Entries, Additional Entries, and differences</title>
      <link>https://community.qlik.com/t5/QlikView/Identifying-Missing-Entries-Additional-Entries-and-differences/m-p/1823387#M1213777</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;tab1:
LOAD *, 'T1' As Flag, GSTIN&amp;amp;'@'&amp;amp;MM_YYYY&amp;amp;'@'&amp;amp;VENDOR_NAME&amp;amp;'@'&amp;amp;INVOICE_DATE As Key;
LOAD No, 
     GSTIN, 
     MM_YYYY, 
     VENDOR_NAME, 
     INVOICE_DATE, 
     INVOICE_AMOUNT, 
     TAXABLE_VALUE, 
     IGST, 
     CGST, 
     SGST, 
     CESS, 
     BILL_TYPE
FROM
[C:\Users\sarav\Downloads\Qlik\T1.PURCHAS_BILLS.xlsx]
(ooxml, embedded labels, table is Sheet1);


LOAD *, 'T2' As Flag, GSTIN&amp;amp;'@'&amp;amp;MM_YYYY&amp;amp;'@'&amp;amp;VENDOR_NAME&amp;amp;'@'&amp;amp;INVOICE_DATE As Key;
LOAD No, 
     GSTIN, 
     MM_YYYY, 
     VENDOR_NAME, 
     INVOICE_DATE, 
     INVOICE_AMOUNT, 
     TAXABLE_VALUE, 
     IGST, 
     CGST, 
     SGST, 
     CESS, 
     BILL_TYPE
FROM
[C:\Users\sarav\Downloads\Qlik\T2.VENDOR_SUBMITTED_GSTR.xlsx]
(ooxml, embedded labels, table is Sheet1);


LOAD *, 'T3' As Flag, GSTIN&amp;amp;'@'&amp;amp;MM_YYYY&amp;amp;'@'&amp;amp;VENDOR_NAME&amp;amp;'@'&amp;amp;INVOICE_DATE As Key;
LOAD No, 
     GSTIN, 
     MM_YYYY, 
     VENDOR_NAME, 
     INVOICE_DATE, 
     INVOICE_AMOUNT, 
     TAXABLE_VALUE, 
     IGST, 
     CGST, 
     SGST, 
     CESS, 
     BILL_TYPE
FROM
[C:\Users\sarav\Downloads\Qlik\T3.ACTUAL_FILED_GSTR.xlsx]
(ooxml, embedded labels, table is Sheet1);


Result:
NoConcatenate
LOAD Key, PurgeChar('T1T2T3',Concat(DISTINCT Flag)) As Result
Resident tab1
Group By Key;

Left Join(Result)
LOAD Key, If(Len(Trim(Result))&amp;gt;0,'T'&amp;amp;Result&amp;amp;'.MISSING') As DIFFERENCES
Resident Result;

Output:
NoConcatenate
LOAD *
Resident tab1
Where Flag='T1'
;

Left Join(Output)
LOAD Key, If(Len(Trim(Result))&amp;gt;0,'T'&amp;amp;Result&amp;amp;'.MISSING') As DIFFERENCES
Resident Result;

Drop Table Result, tab1;&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 20 Jul 2021 17:53:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identifying-Missing-Entries-Additional-Entries-and-differences/m-p/1823387#M1213777</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2021-07-20T17:53:38Z</dc:date>
    </item>
    <item>
      <title>Re: Identifying Missing Entries, Additional Entries, and differences</title>
      <link>https://community.qlik.com/t5/QlikView/Identifying-Missing-Entries-Additional-Entries-and-differences/m-p/1823391#M1213778</link>
      <description>&lt;P&gt;Chart is not needed. The Below Output uses 'Table Box' Object.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="commQV78.PNG" style="width: 837px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/58883iDB7E49A85D1DE853/image-size/large?v=v2&amp;amp;px=999" role="button" title="commQV78.PNG" alt="commQV78.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jul 2021 17:54:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identifying-Missing-Entries-Additional-Entries-and-differences/m-p/1823391#M1213778</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2021-07-20T17:54:41Z</dc:date>
    </item>
    <item>
      <title>Re: Identifying Missing Entries, Additional Entries, and differences</title>
      <link>https://community.qlik.com/t5/QlikView/Identifying-Missing-Entries-Additional-Entries-and-differences/m-p/1823769#M1213800</link>
      <description>&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Sat, 24 Jul 2021 10:35:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identifying-Missing-Entries-Additional-Entries-and-differences/m-p/1823769#M1213800</guid>
      <dc:creator>ramsqlik</dc:creator>
      <dc:date>2021-07-24T10:35:45Z</dc:date>
    </item>
  </channel>
</rss>

