<?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: Compare fields between two tables without having a common column in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Compare-fields-between-two-tables-without-having-a-common-column/m-p/1636891#M446859</link>
    <description>&lt;P&gt;Try this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;t1:
LOAD * INLINE [
    Word, Classification, Decision
    Access, Operate, Operate
    missing data, Technical, Avoid
    Access Rights, Operate, Consider
    Application - Script, Operate, Consider
    Bad Data, Technical, Avoid
    Bad Config, Operate, Consider
    user error, Operate, Consider
    user error, Knowledge, Consider
    missing data, Technical, Avoid
    Server, Infra,  
    Systems , Infra,  
    Connectivity issue, Infra, Consider
    Connectivity issue, Infra,  
];

t1Mapping:
Mapping
LOAD Lower(Word),
	 '/' &amp;amp; Word &amp;amp; '\'
Resident t1;

t2:
LOAD *,
	 TextBetween(MapSubString('t1Mapping', lower([Word Description])), '/', '\') as Word;
LOAD * INLINE [
    Word Description, IncidentNo
    Access related Issue, 2345
    File has Missing Data, 2346
    User facing Access Rights issue, 2347
    File is identified with Bad Data, 2348
    user error identified, 2349
    Need to rectify user error ASAP, 2350
    missing data needs to be filled, 2351
    Server related Issue, 2352
    Systems integration issue, 2353
    Connectivity issue from client machine, 2354
];

Left Join (t2)
LOAD *
Resident t1;

DROP Table t1;&lt;/LI-CODE&gt;</description>
    <pubDate>Thu, 17 Oct 2019 19:05:16 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2019-10-17T19:05:16Z</dc:date>
    <item>
      <title>Compare fields between two tables without having a common column</title>
      <link>https://community.qlik.com/t5/QlikView/Compare-fields-between-two-tables-without-having-a-common-column/m-p/1636886#M446858</link>
      <description>&lt;P&gt;Hi&amp;nbsp; Techies,&lt;/P&gt;&lt;P&gt;I hope you will be able to help me in below requirement.&lt;/P&gt;&lt;P&gt;I have a &lt;STRONG&gt;table1&lt;/STRONG&gt; containing&amp;nbsp; a Word field&amp;nbsp;and &lt;STRONG&gt;table2&lt;/STRONG&gt; containing Word Descriotion field&lt;/P&gt;&lt;P&gt;&amp;nbsp;if the &lt;STRONG&gt;text&amp;nbsp;&lt;/STRONG&gt;field value matches with any sub string&amp;nbsp;value of &lt;STRONG&gt;Word Description &lt;/STRONG&gt;, then i have to bring columns from table1 into table2.&lt;/P&gt;&lt;P&gt;Also there is no common column existing in both the tables.&lt;/P&gt;&lt;P&gt;Below is the sample data for both the tables.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Word&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Classification&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Decision&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Access&lt;/TD&gt;&lt;TD&gt;Operate&lt;/TD&gt;&lt;TD&gt;Operate&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;missing data&lt;/TD&gt;&lt;TD&gt;Technical&lt;/TD&gt;&lt;TD&gt;Avoid&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Access Rights&lt;/TD&gt;&lt;TD&gt;Operate&lt;/TD&gt;&lt;TD&gt;Consider&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Application - Script&lt;/TD&gt;&lt;TD&gt;Operate&lt;/TD&gt;&lt;TD&gt;Consider&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Bad Data&lt;/TD&gt;&lt;TD&gt;Technical&lt;/TD&gt;&lt;TD&gt;Avoid&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Bad Config&lt;/TD&gt;&lt;TD&gt;Operate&lt;/TD&gt;&lt;TD&gt;Consider&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;user error&lt;/TD&gt;&lt;TD&gt;Operate&lt;/TD&gt;&lt;TD&gt;Consider&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;user error&lt;/TD&gt;&lt;TD&gt;Knowledge&lt;/TD&gt;&lt;TD&gt;Consider&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;missing data&lt;/TD&gt;&lt;TD&gt;Technical&lt;/TD&gt;&lt;TD&gt;Avoid&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Server&lt;/TD&gt;&lt;TD&gt;Infra&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Systems&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;Infra&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Connectivity issue&lt;/TD&gt;&lt;TD&gt;Infra&lt;/TD&gt;&lt;TD&gt;Consider&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Connectivity issue&lt;/TD&gt;&lt;TD&gt;Infra&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table2:&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Word Descriotion&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;IncidentNo&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Access related Issue&lt;/TD&gt;&lt;TD&gt;2345&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;File has Missing Data&lt;/TD&gt;&lt;TD&gt;2346&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;User facing Access Rights issue&lt;/TD&gt;&lt;TD&gt;2347&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;File is identified with Bad Data&lt;/TD&gt;&lt;TD&gt;2348&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;user error identified&lt;/TD&gt;&lt;TD&gt;2349&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Need to rectify user error ASAP&lt;/TD&gt;&lt;TD&gt;2350&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;missing data needs to be filled&lt;/TD&gt;&lt;TD&gt;2351&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Server related Issue&lt;/TD&gt;&lt;TD&gt;2352&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Systems integration issue&lt;/TD&gt;&lt;TD&gt;2353&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Connectivity issue from client machine&lt;/TD&gt;&lt;TD&gt;2354&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Expected Output table:&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Word Descriotion&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;IncidentNo&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Word&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Classification&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Decision&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Access&lt;/STRONG&gt; related Issue&lt;/TD&gt;&lt;TD&gt;2345&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Access&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;Operate&lt;/TD&gt;&lt;TD&gt;Operate&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;File has &lt;STRONG&gt;Missing Data&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;2346&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;missing data&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;Technical&lt;/TD&gt;&lt;TD&gt;Avoid&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;User facing&lt;STRONG&gt; Access&lt;/STRONG&gt; &lt;STRONG&gt;Rights&lt;/STRONG&gt; issue&lt;/TD&gt;&lt;TD&gt;2347&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Access Rights&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;Operate&lt;/TD&gt;&lt;TD&gt;Consider&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;File is identified with &lt;STRONG&gt;Bad Data&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;2348&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Bad Data&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;Technical&lt;/TD&gt;&lt;TD&gt;Avoid&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;user error&lt;/STRONG&gt; identified&lt;/TD&gt;&lt;TD&gt;2349&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;user error&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;Operate&lt;/TD&gt;&lt;TD&gt;Consider&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;user error&lt;/STRONG&gt; identified&lt;/TD&gt;&lt;TD&gt;2349&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;user error&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;Knowledge&lt;/TD&gt;&lt;TD&gt;Consider&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Need to rectify &lt;STRONG&gt;user&lt;/STRONG&gt; &lt;STRONG&gt;error&lt;/STRONG&gt; ASAP&lt;/TD&gt;&lt;TD&gt;2350&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;user error&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;Operate&lt;/TD&gt;&lt;TD&gt;Consider&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Need to rectify &lt;STRONG&gt;user&lt;/STRONG&gt; &lt;STRONG&gt;error&lt;/STRONG&gt; ASAP&lt;/TD&gt;&lt;TD&gt;2350&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;user error&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;Knowledge&lt;/TD&gt;&lt;TD&gt;Consider&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;missing data&lt;/STRONG&gt; needs to be filled&lt;/TD&gt;&lt;TD&gt;2351&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;missing data&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;Technical&lt;/TD&gt;&lt;TD&gt;Avoid&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Server&lt;/STRONG&gt; related Issue&lt;/TD&gt;&lt;TD&gt;2352&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Server&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;Infra&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Systems&lt;/STRONG&gt; integration issue&lt;/TD&gt;&lt;TD&gt;2353&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Systems&amp;nbsp;&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;Infra&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Connectivity issue&lt;/STRONG&gt; from client machine&lt;/TD&gt;&lt;TD&gt;2354&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Connectivity issue&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;Infra&lt;/TD&gt;&lt;TD&gt;Consider&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Connectivity issue&lt;/STRONG&gt; from client machine&lt;/TD&gt;&lt;TD&gt;2354&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Connectivity issue&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;Infra&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please let me know the solution if anyone able to find it.&lt;/P&gt;&lt;P&gt;Thanks in Advance,&lt;/P&gt;&lt;P&gt;Sekhar.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 19:52:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Compare-fields-between-two-tables-without-having-a-common-column/m-p/1636886#M446858</guid>
      <dc:creator>PRS</dc:creator>
      <dc:date>2024-11-16T19:52:31Z</dc:date>
    </item>
    <item>
      <title>Re: Compare fields between two tables without having a common column</title>
      <link>https://community.qlik.com/t5/QlikView/Compare-fields-between-two-tables-without-having-a-common-column/m-p/1636891#M446859</link>
      <description>&lt;P&gt;Try this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;t1:
LOAD * INLINE [
    Word, Classification, Decision
    Access, Operate, Operate
    missing data, Technical, Avoid
    Access Rights, Operate, Consider
    Application - Script, Operate, Consider
    Bad Data, Technical, Avoid
    Bad Config, Operate, Consider
    user error, Operate, Consider
    user error, Knowledge, Consider
    missing data, Technical, Avoid
    Server, Infra,  
    Systems , Infra,  
    Connectivity issue, Infra, Consider
    Connectivity issue, Infra,  
];

t1Mapping:
Mapping
LOAD Lower(Word),
	 '/' &amp;amp; Word &amp;amp; '\'
Resident t1;

t2:
LOAD *,
	 TextBetween(MapSubString('t1Mapping', lower([Word Description])), '/', '\') as Word;
LOAD * INLINE [
    Word Description, IncidentNo
    Access related Issue, 2345
    File has Missing Data, 2346
    User facing Access Rights issue, 2347
    File is identified with Bad Data, 2348
    user error identified, 2349
    Need to rectify user error ASAP, 2350
    missing data needs to be filled, 2351
    Server related Issue, 2352
    Systems integration issue, 2353
    Connectivity issue from client machine, 2354
];

Left Join (t2)
LOAD *
Resident t1;

DROP Table t1;&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 17 Oct 2019 19:05:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Compare-fields-between-two-tables-without-having-a-common-column/m-p/1636891#M446859</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-10-17T19:05:16Z</dc:date>
    </item>
    <item>
      <title>Re: Compare fields between two tables without having a common column</title>
      <link>https://community.qlik.com/t5/QlikView/Compare-fields-between-two-tables-without-having-a-common-column/m-p/1636937#M446863</link>
      <description>&lt;P&gt;I add a small modification to the &lt;STRONG&gt;Sunny Talwar&lt;/STRONG&gt; script to consider the existence of more than one distinct value present in &lt;STRONG&gt;[Word]&lt;/STRONG&gt; inside &lt;STRONG&gt;[Word Description]&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;Note: i modified the description of incident number &lt;STRONG&gt;2345&lt;/STRONG&gt; to&amp;nbsp;illustrate the point.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SET NullInterpret = '-';

t1:
LOAD DISTINCT * INLINE [
    Word, 				  Classification, Decision
    Access, 			  Operate, 		  Operate
    missing data, 		  Technical, 	  Avoid
    Access Rights, 		  Operate, 		  Consider
    Application - Script, Operate, 		  Consider
    Bad Data, 			  Technical,  	  Avoid
    Bad Config, 		  Operate,  	  Consider
    user error, 		  Operate, 		  Consider
    user error, 		  Knowledge, 	  Consider
    missing data, 		  Technical, 	  Avoid
    Server, 			  Infra,		  -
    Systems, 			  Infra,		  -
    Connectivity issue,   Infra, 		  Consider
    Connectivity issue,   Infra,		  -
];

t1Mapping:
MAPPING LOAD Lower(Word), '/' &amp;amp; Word &amp;amp; '\|' RESIDENT t1;

t2:
LOAD *, IncidentNo &amp;amp; '_' &amp;amp; Word AS KeyTemp
WHERE Not Exists(IncidentNo) Or (Not Exists(KeyTemp, IncidentNo &amp;amp; '_' &amp;amp; Word) And Len(Trim(Word)))
;
LOAD *,
	 TextBetween(SubField(MapSubString('t1Mapping', Lower([Word Description])), '|'), '/', '\') AS Word
;
LOAD * INLINE [
    Word Description, 						IncidentNo
    Access related Issue and Bad Data, 		2345
    File has Missing Data, 			   		2346
    User facing Access Rights issue,   		2347
    File is identified with Bad Data,  		2348
    user error identified, 			   		2349
    Need to rectify user error ASAP,   		2350
    missing data needs to be filled,   		2351
    Server related Issue, 			   		2352
    Systems integration issue, 		  		2353
    Connectivity issue from client machine, 2354
];

LEFT JOIN (t2)
LOAD * RESIDENT t1;

DROP TABLE t1;
DROP FIELD KeyTemp;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="clipboard_image_0.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/21840i209CB8BE4FECFE94/image-size/large?v=v2&amp;amp;px=999" role="button" title="clipboard_image_0.png" alt="clipboard_image_0.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Oct 2019 22:18:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Compare-fields-between-two-tables-without-having-a-common-column/m-p/1636937#M446863</guid>
      <dc:creator>JGMDataAnalysis</dc:creator>
      <dc:date>2019-10-17T22:18:56Z</dc:date>
    </item>
    <item>
      <title>Re: Compare fields between two tables without having a common column</title>
      <link>https://community.qlik.com/t5/QlikView/Compare-fields-between-two-tables-without-having-a-common-column/m-p/1637102#M446875</link>
      <description>&lt;P&gt;Thanks for your prompt reply Sunny,&lt;/P&gt;&lt;P&gt;I have got one more issue here.&lt;/P&gt;&lt;P&gt;If the word is "&lt;STRONG&gt;systems&lt;/STRONG&gt;"&amp;nbsp; and the description is like "&lt;STRONG&gt;systemsIntegration&lt;/STRONG&gt;" which is not having any gap, then the script should not &lt;STRONG&gt;match&lt;/STRONG&gt; the word and &lt;STRONG&gt;Description.&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Can you pls suggest, how can I resolve this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sekhar&lt;/P&gt;</description>
      <pubDate>Fri, 18 Oct 2019 10:54:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Compare-fields-between-two-tables-without-having-a-common-column/m-p/1637102#M446875</guid>
      <dc:creator>PRS</dc:creator>
      <dc:date>2019-10-18T10:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: Compare fields between two tables without having a common column</title>
      <link>https://community.qlik.com/t5/QlikView/Compare-fields-between-two-tables-without-having-a-common-column/m-p/1637104#M446876</link>
      <description>&lt;P&gt;Try this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;t1:
LOAD * INLINE [
    Word, Classification, Decision
    Access, Operate, Operate
    missing data, Technical, Avoid
    Access Rights, Operate, Consider
    Application - Script, Operate, Consider
    Bad Data, Technical, Avoid
    Bad Config, Operate, Consider
    user error, Operate, Consider
    user error, Knowledge, Consider
    missing data, Technical, Avoid
    Server, Infra,  
    Systems, Infra,  
    Connectivity issue, Infra, Consider
    Connectivity issue, Infra,  
];

t1Mapping:
Mapping
LOAD Lower(' ' &amp;amp; Word &amp;amp; ' '),
	 '/' &amp;amp; Word &amp;amp; '\'
Resident t1;

t2:
LOAD *,
	 TextBetween(MapSubString('t1Mapping', ' ' &amp;amp; lower([Word Description]) &amp;amp; ' '), '/', '\') as Word;
LOAD * INLINE [
    Word Description, IncidentNo
    Access related Issue, 2345
    File has Missing Data, 2346
    User facing Access Rights issue, 2347
    File is identified with Bad Data, 2348
    user error identified, 2349
    Need to rectify user error ASAP, 2350
    missing data needs to be filled, 2351
    Server related Issue, 2352
    Systemsintegration issue, 2353
    Connectivity issue from client machine, 2354
];

Left Join (t2)
LOAD *
Resident t1;

DROP Table t1;&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 18 Oct 2019 10:59:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Compare-fields-between-two-tables-without-having-a-common-column/m-p/1637104#M446876</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-10-18T10:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: Compare fields between two tables without having a common column</title>
      <link>https://community.qlik.com/t5/QlikView/Compare-fields-between-two-tables-without-having-a-common-column/m-p/1639180#M447058</link>
      <description>&lt;P&gt;Sekhar, did Sunny's last post get you what you needed?&amp;nbsp; If so, do not forget to come back and use the Accept as Solution button on that post to mark it for others and to give Sunny credit.&amp;nbsp; If you are still working on things, let us know where things stand, so we can see if we can get you further help.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 19:02:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Compare-fields-between-two-tables-without-having-a-common-column/m-p/1639180#M447058</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2019-10-23T19:02:07Z</dc:date>
    </item>
    <item>
      <title>Re: Compare fields between two tables without having a common column</title>
      <link>https://community.qlik.com/t5/QlikView/Compare-fields-between-two-tables-without-having-a-common-column/m-p/1639319#M447069</link>
      <description>&lt;P&gt;Thankyouverymuch Sunny, its working as expected.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Oct 2019 07:30:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Compare-fields-between-two-tables-without-having-a-common-column/m-p/1639319#M447069</guid>
      <dc:creator>PRS</dc:creator>
      <dc:date>2019-10-24T07:30:04Z</dc:date>
    </item>
  </channel>
</rss>

