<?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: Finding values from one column in other column in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Finding-values-from-one-column-in-other-column/m-p/1647261#M447599</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I think the correct syntax should be like this:&lt;/P&gt;&lt;P&gt;Data:&lt;BR /&gt;LOAD * Inline&lt;BR /&gt;[&lt;BR /&gt;NAME, VALUE1, VALUE2&lt;BR /&gt;AAA, 1, 1&lt;BR /&gt;BBB, 2, 1&lt;BR /&gt;CCC, 2, 2&lt;BR /&gt;DDD, 1, 3&lt;BR /&gt;EEE, 3, 2&lt;BR /&gt;FFF, 4, 1&lt;BR /&gt;GGG, 3, 5&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;Exist:&lt;BR /&gt;Load&lt;BR /&gt;NAME,&lt;BR /&gt;'Yes' as Flag&lt;BR /&gt;Resident Data&lt;BR /&gt;Where Exists(VALUE2,VALUE1);&lt;/P&gt;&lt;P&gt;NotExist:&lt;BR /&gt;Load&lt;BR /&gt;NAME,&lt;BR /&gt;'No' as Flag&lt;BR /&gt;Resident Data&lt;BR /&gt;Where not Exists(VALUE2,VALUE1);&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 290px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/23703i478919CDCF58286E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 15 Nov 2019 03:09:19 GMT</pubDate>
    <dc:creator>syedabik</dc:creator>
    <dc:date>2019-11-15T03:09:19Z</dc:date>
    <item>
      <title>Finding values from one column in other column</title>
      <link>https://community.qlik.com/t5/QlikView/Finding-values-from-one-column-in-other-column/m-p/1647174#M447595</link>
      <description>&lt;P&gt;Dear friends,&lt;/P&gt;&lt;P&gt;Suppose I have three columns like this:&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;NAME&lt;/TD&gt;&lt;TD&gt;VALUE1&lt;/TD&gt;&lt;TD&gt;VALUE2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;AAA&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;BBB&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;CCC&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;DDD&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;EEE&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FFF&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;GGG&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;BR /&gt;So, my goal is to know which NAMES has values from VALUE1 that also appear in VALUE2. I wish to have a result like this:&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;NAME&lt;/TD&gt;&lt;TD&gt;VALUE1&lt;/TD&gt;&lt;TD&gt;VALUE2&lt;/TD&gt;&lt;TD&gt;FLAG&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;AAA&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;yes&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;BBB&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;yes&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;CCC&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;yes&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;DDD&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;yes&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;EEE&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;yes&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FFF&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;no&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;GGG&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;yes&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;BR /&gt;Note that EEE's FLAG value needs to be NO, since his VALUE1 (4) does not exists in VALUE2 column,&lt;/P&gt;&lt;P&gt;Anyone can help me? many thanks in advance.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 01:56:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Finding-values-from-one-column-in-other-column/m-p/1647174#M447595</guid>
      <dc:creator>mlarruda</dc:creator>
      <dc:date>2024-11-16T01:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: Finding values from one column in other column</title>
      <link>https://community.qlik.com/t5/QlikView/Finding-values-from-one-column-in-other-column/m-p/1647205#M447598</link>
      <description>&lt;P&gt;Hey, I am a little lost with your notes but if you want to create the flag that is going to say 'yes' when the Value2 exists in Value1 and says 'no' when Value2 doesn't exist in Value1 you can do something like this:&amp;nbsp;&lt;/P&gt;&lt;P&gt;T1:&lt;BR /&gt;LOAD&lt;BR /&gt;NAME,&lt;BR /&gt;VALUE1,&lt;BR /&gt;VALUE2&lt;BR /&gt;FROM [lib://Desktop/Book1.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;T2:&lt;BR /&gt;Load&lt;BR /&gt;NAME,&lt;BR /&gt;'yes' as Flag&lt;BR /&gt;Resident T1&lt;BR /&gt;Where Exists(VALUE1,VALUE2);&lt;/P&gt;&lt;P&gt;Load&lt;BR /&gt;NAME,&lt;BR /&gt;'no' as Flag&lt;BR /&gt;Resident T1&lt;BR /&gt;Where not Exists(VALUE1,VALUE2);&lt;/P&gt;&lt;P&gt;Result:&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 555px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/23696i083747ADD83F1DEB/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2019 21:01:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Finding-values-from-one-column-in-other-column/m-p/1647205#M447598</guid>
      <dc:creator>y_grynechko</dc:creator>
      <dc:date>2019-11-14T21:01:45Z</dc:date>
    </item>
    <item>
      <title>Re: Finding values from one column in other column</title>
      <link>https://community.qlik.com/t5/QlikView/Finding-values-from-one-column-in-other-column/m-p/1647261#M447599</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I think the correct syntax should be like this:&lt;/P&gt;&lt;P&gt;Data:&lt;BR /&gt;LOAD * Inline&lt;BR /&gt;[&lt;BR /&gt;NAME, VALUE1, VALUE2&lt;BR /&gt;AAA, 1, 1&lt;BR /&gt;BBB, 2, 1&lt;BR /&gt;CCC, 2, 2&lt;BR /&gt;DDD, 1, 3&lt;BR /&gt;EEE, 3, 2&lt;BR /&gt;FFF, 4, 1&lt;BR /&gt;GGG, 3, 5&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;Exist:&lt;BR /&gt;Load&lt;BR /&gt;NAME,&lt;BR /&gt;'Yes' as Flag&lt;BR /&gt;Resident Data&lt;BR /&gt;Where Exists(VALUE2,VALUE1);&lt;/P&gt;&lt;P&gt;NotExist:&lt;BR /&gt;Load&lt;BR /&gt;NAME,&lt;BR /&gt;'No' as Flag&lt;BR /&gt;Resident Data&lt;BR /&gt;Where not Exists(VALUE2,VALUE1);&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 290px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/23703i478919CDCF58286E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2019 03:09:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Finding-values-from-one-column-in-other-column/m-p/1647261#M447599</guid>
      <dc:creator>syedabik</dc:creator>
      <dc:date>2019-11-15T03:09:19Z</dc:date>
    </item>
    <item>
      <title>Re: Finding values from one column in other column</title>
      <link>https://community.qlik.com/t5/QlikView/Finding-values-from-one-column-in-other-column/m-p/1647928#M447639</link>
      <description>&lt;P&gt;Hi. It is exactly what I need. Thank you very much!&lt;/P&gt;&lt;P&gt;But would it be possible to define this flag as a graphic dimension rather than in the LOAD statement?&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2019 13:00:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Finding-values-from-one-column-in-other-column/m-p/1647928#M447639</guid>
      <dc:creator>mlarruda</dc:creator>
      <dc:date>2019-11-18T13:00:13Z</dc:date>
    </item>
    <item>
      <title>Re: Finding values from one column in other column</title>
      <link>https://community.qlik.com/t5/QlikView/Finding-values-from-one-column-in-other-column/m-p/1648179#M447648</link>
      <description>&lt;P&gt;In truth, I don't have such NAME column and I don't know if open a new question topic might be better than continue here. I think that explain here its better so anyone can see the suggestions above and simply do the required corrections.&lt;/P&gt;&lt;P&gt;Consider, for example, this loading script:&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Tab1:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;LOAD * INLINE&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;[VALUE1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;2&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;3&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;21&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;22&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;23&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;24&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;25&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;26&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;27&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;];&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Concatenate&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;LOAD * INLINE&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;[VALUE2&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;2&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;3&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;15&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;16&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;17&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;35];&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Exist:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Load&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;'Yes' as Flag&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Resident Tab1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Where Exists(VALUE2,VALUE1);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;NotExist:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Load&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;'No' as Flag&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Resident Tab1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Where not Exists(VALUE2,VALUE1);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;I'm attaching the results I obtained:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;LIST1 is a list of VALUE1 values;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;LIST2 is a list of VALUE2 values;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;T1 is a table of VALUE1 and FLAG values;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;T2 is a table of VALUE2 and FLAG values;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;TABLE FLAG is a table (graphic) with FLAG as Dimension and COUNT(VALUE1) as Expression.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;So, since only values 1, 2 and 3 appears in both VALUE1 and VALUE2 variables, I wanted that:&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;T1 shows Yes for the values 1, 2 and 3 and No for the other values (I can't understand why both Yes and No are shown for all values);&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;The same for T2;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;TABLE FLAG shows "No - 7" (since 7 values from VALUE1 doesn't exist in VALUE2) and "Yes - 3" (since 3 values from VALUE1 does exist in VALUE2).&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;So, anyone can help me?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2019 20:39:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Finding-values-from-one-column-in-other-column/m-p/1648179#M447648</guid>
      <dc:creator>mlarruda</dc:creator>
      <dc:date>2019-11-18T20:39:04Z</dc:date>
    </item>
    <item>
      <title>Re: Finding values from one column in other column</title>
      <link>https://community.qlik.com/t5/QlikView/Finding-values-from-one-column-in-other-column/m-p/1648224#M447652</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Maybe you can consider this option also.&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Tab1:&lt;BR /&gt;Load *,&lt;BR /&gt;AutoNumber(VALUE1) as %KEY;&lt;BR /&gt;LOAD * INLINE&lt;BR /&gt;[VALUE1&lt;BR /&gt;1&lt;BR /&gt;2&lt;BR /&gt;3&lt;BR /&gt;21&lt;BR /&gt;22&lt;BR /&gt;23&lt;BR /&gt;24&lt;BR /&gt;25&lt;BR /&gt;26&lt;BR /&gt;27&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;Join&lt;BR /&gt;Load *,&lt;BR /&gt;AutoNumber(VALUE2) as %KEY;&lt;BR /&gt;LOAD * INLINE&lt;BR /&gt;[VALUE2&lt;BR /&gt;1&lt;BR /&gt;2&lt;BR /&gt;3&lt;BR /&gt;15&lt;BR /&gt;16&lt;BR /&gt;17&lt;BR /&gt;35&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;Final:&lt;BR /&gt;Load *,&lt;BR /&gt;If(VALUE1=VALUE2,'Yes','No') as Flag&lt;BR /&gt;Resident Tab1;&lt;/P&gt;&lt;P&gt;DROP Table Tab1;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 857px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/23890i09F389C36C622214/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2019 02:21:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Finding-values-from-one-column-in-other-column/m-p/1648224#M447652</guid>
      <dc:creator>syedabik</dc:creator>
      <dc:date>2019-11-19T02:21:50Z</dc:date>
    </item>
    <item>
      <title>Re: Finding values from one column in other column</title>
      <link>https://community.qlik.com/t5/QlikView/Finding-values-from-one-column-in-other-column/m-p/1648664#M447680</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Marcelo, did Syed's post help you get what you needed?&amp;nbsp; If so, do not forget to come back to the thread and use the Accept as Solution button on that post to give credit for the help and let other Community Members know that worked.&amp;nbsp; If you are still working on things, leave an update as to what you still need at this point.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Regards,&lt;BR /&gt;Brett&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2019 16:39:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Finding-values-from-one-column-in-other-column/m-p/1648664#M447680</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2019-11-19T16:39:08Z</dc:date>
    </item>
    <item>
      <title>Re: Finding values from one column in other column</title>
      <link>https://community.qlik.com/t5/QlikView/Finding-values-from-one-column-in-other-column/m-p/1650121#M447779</link>
      <description>&lt;P&gt;Hi, Brett.&lt;/P&gt;&lt;P&gt;First of all, sorry for the silence. Last days I was involved in other jobs and only now could come back for this problem.&lt;/P&gt;&lt;P&gt;Secondly, my real databank is very complex and I'm afraid that this AUTONUMBER function can cause some problems to my variables. Also, I noted that the COUNT(Flag) table in Syed's solution is summing 14 and I wanted it summed 10 (since VALUE1 has only 10 values).&lt;/P&gt;&lt;P&gt;Now, I tried this script and obtained the attached result. Except for the repeated rows with hyphens, it is working well.&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Tab1:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;LOAD * INLINE&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;[VALUE1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;2&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;3&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;21&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;22&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;23&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;24&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;25&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;26&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;27&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;];&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Concatenate&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;LOAD * INLINE&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;[VALUE2&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;2&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;3&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;15&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;16&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;17&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;35];&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Concatenate&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;ExistFlag:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Load VALUE1, VALUE2,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;If(Exists(VALUE2,VALUE1),'Yes','No') as Flag&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Resident Tab1&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;So, if anyone can work in this script to exclude these hyphens, this would be great!&lt;/P&gt;</description>
      <pubDate>Fri, 22 Nov 2019 14:01:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Finding-values-from-one-column-in-other-column/m-p/1650121#M447779</guid>
      <dc:creator>mlarruda</dc:creator>
      <dc:date>2019-11-22T14:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: Finding values from one column in other column</title>
      <link>https://community.qlik.com/t5/QlikView/Finding-values-from-one-column-in-other-column/m-p/1653379#M447993</link>
      <description>&lt;P&gt;Try using the calculated dimensions and expression highlighted:&lt;/P&gt;&lt;P&gt;Expression:&lt;/P&gt;&lt;P&gt;=count(if(not isnull(Flag),VALUE1,null()))&lt;/P&gt;&lt;P&gt;Calculated dimension:&lt;/P&gt;&lt;P&gt;VALUE1 :&lt;/P&gt;&lt;P&gt;=if(not isnull(Flag),VALUE1,null())&lt;/P&gt;&lt;P&gt;Flag:&lt;/P&gt;&lt;P&gt;=if(not isnull(VALUE1),Flag,null())&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MC.PNG" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/24778iDD3D1CDC7EC83C87/image-size/large?v=v2&amp;amp;px=999" role="button" title="MC.PNG" alt="MC.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2019 01:17:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Finding-values-from-one-column-in-other-column/m-p/1653379#M447993</guid>
      <dc:creator>Arthur_Fong</dc:creator>
      <dc:date>2019-12-03T01:17:48Z</dc:date>
    </item>
    <item>
      <title>Re: Finding values from one column in other column</title>
      <link>https://community.qlik.com/t5/QlikView/Finding-values-from-one-column-in-other-column/m-p/1653627#M448009</link>
      <description>&lt;P&gt;Worked! Thank you very much!&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2019 14:44:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Finding-values-from-one-column-in-other-column/m-p/1653627#M448009</guid>
      <dc:creator>mlarruda</dc:creator>
      <dc:date>2019-12-03T14:44:54Z</dc:date>
    </item>
  </channel>
</rss>

