<?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: Identify common mobile number in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539989#M148986</link>
    <description>&lt;P&gt;I can't right now. I hope to remember when I have some spare time.&lt;/P&gt;&lt;P&gt;I took a look and it's hard to follow, can you prepare a sample qvf that explains the requirements with some dummy data and the expected reult?&lt;/P&gt;</description>
    <pubDate>Tue, 30 Dec 2025 09:17:28 GMT</pubDate>
    <dc:creator>rubenmarin</dc:creator>
    <dc:date>2025-12-30T09:17:28Z</dc:date>
    <item>
      <title>Identify common mobile number</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539929#M148974</link>
      <description>&lt;P&gt;I have mobile numbers and one number can have multiple reference id's so the requirement is when I select one reference id then table should show all reference id with respect to mobile number means mobile number associated with selected reference id. so want to see all reference id with common mobile number after selection of one reference id through filter , example&amp;nbsp;Data:&lt;BR /&gt;Load*&lt;BR /&gt;Inline [&lt;BR /&gt;Reference_ID,Mobile_Number&lt;BR /&gt;Ref12345,9999999999&lt;BR /&gt;Ref56789,9999999999&lt;BR /&gt;Ref98765,8888888888&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so when select&amp;nbsp;Ref12345 in filter then my table should show result&amp;nbsp;Ref56789,9999999999&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jan 2026 14:45:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539929#M148974</guid>
      <dc:creator>Sunil645454</dc:creator>
      <dc:date>2026-01-02T14:45:42Z</dc:date>
    </item>
    <item>
      <title>Re: Identify common mobile number</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539932#M148975</link>
      <description>&lt;P&gt;Hi, if you don't want to show your current selection in the table, the expression could be:&lt;/P&gt;&lt;P&gt;Only({&amp;lt;Mobile_Number=P(Mobile_Number), Reference_ID={"*"}-P(Reference_ID)&amp;gt;} Mobile_Number)&lt;/P&gt;&lt;P&gt;To also show the selected Reference_ID it could be:&lt;/P&gt;&lt;P&gt;Only({&amp;lt;Mobile_Number=P(Mobile_Number), Reference_ID=&amp;gt;} Mobile_Number)&lt;/P&gt;</description>
      <pubDate>Sun, 28 Dec 2025 16:20:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539932#M148975</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2025-12-28T16:20:35Z</dc:date>
    </item>
    <item>
      <title>Re: Identify common mobile number</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539933#M148976</link>
      <description>&lt;P&gt;Create 1 variable. In that variable predict&amp;nbsp; GetFieldSelection(RefID) mobile no. In table chart using set analysis pass this variable to mobile no field and get the refid's&lt;/P&gt;</description>
      <pubDate>Sun, 28 Dec 2025 17:04:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539933#M148976</guid>
      <dc:creator>ManimekalaiS</dc:creator>
      <dc:date>2025-12-28T17:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: Identify common mobile number</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539950#M148977</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Only({&amp;lt;Mobile_Number=P(Mobile_Number), Reference_ID={"*"}-P(Reference_ID)&amp;gt;} Mobile_Number) - this is giving me hypen no records and&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Only({&amp;lt;Mobile_Number=P(Mobile_Number), Reference_ID=&amp;gt;} Mobile_Number) - give me all three records&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Dec 2025 14:05:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539950#M148977</guid>
      <dc:creator>Sunil645454</dc:creator>
      <dc:date>2025-12-29T14:05:25Z</dc:date>
    </item>
    <item>
      <title>Re: Identify common mobile number</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539951#M148978</link>
      <description>&lt;P&gt;If you can please elaborate further&lt;/P&gt;</description>
      <pubDate>Mon, 29 Dec 2025 14:06:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539951#M148978</guid>
      <dc:creator>Sunil645454</dc:creator>
      <dc:date>2025-12-29T14:06:10Z</dc:date>
    </item>
    <item>
      <title>Re: Identify common mobile number</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539974#M148979</link>
      <description>&lt;P&gt;Hi, I did a test with your sample data and it works:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rubenmarin_0-1767078533482.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/185985i029132B8B1776D67/image-size/medium?v=v2&amp;amp;px=400" role="button" title="rubenmarin_0-1767078533482.png" alt="rubenmarin_0-1767078533482.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Dec 2025 07:10:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539974#M148979</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2025-12-30T07:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: Identify common mobile number</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539976#M148980</link>
      <description>&lt;P&gt;Please check this , i am getting this and I just had inline load nothing else for these three records and in front end you can see how it is coming when filtered.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Sunil645454_0-1767079266502.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/185986i2CEF0669DA8ED1E4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Sunil645454_0-1767079266502.png" alt="Sunil645454_0-1767079266502.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Dec 2025 07:21:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539976#M148980</guid>
      <dc:creator>Sunil645454</dc:creator>
      <dc:date>2025-12-30T07:21:18Z</dc:date>
    </item>
    <item>
      <title>Re: Identify common mobile number</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539977#M148981</link>
      <description>&lt;P&gt;Can you upload the qvf to check?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Dec 2025 07:24:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539977#M148981</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2025-12-30T07:24:09Z</dc:date>
    </item>
    <item>
      <title>Re: Identify common mobile number</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539978#M148982</link>
      <description>&lt;P&gt;Here it&amp;nbsp; is&lt;/P&gt;</description>
      <pubDate>Tue, 30 Dec 2025 07:32:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539978#M148982</guid>
      <dc:creator>Sunil645454</dc:creator>
      <dc:date>2025-12-30T07:32:27Z</dc:date>
    </item>
    <item>
      <title>Re: Identify common mobile number</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539980#M148983</link>
      <description>&lt;P&gt;Hi, you have your selector in a different altern state&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rubenmarin_0-1767081669172.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/185987i51EF71DEFE29B7A3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="rubenmarin_0-1767081669172.png" alt="rubenmarin_0-1767081669172.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Dec 2025 08:01:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539980#M148983</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2025-12-30T08:01:43Z</dc:date>
    </item>
    <item>
      <title>Re: Identify common mobile number</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539981#M148984</link>
      <description>&lt;P&gt;Ahh, I was applying other methods thats why and forgot to remove it,&lt;/P&gt;&lt;P&gt;Thanks rubenmarin&lt;/P&gt;</description>
      <pubDate>Tue, 30 Dec 2025 08:26:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539981#M148984</guid>
      <dc:creator>Sunil645454</dc:creator>
      <dc:date>2025-12-30T08:26:20Z</dc:date>
    </item>
    <item>
      <title>Re: Identify common mobile number</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539982#M148985</link>
      <description>&lt;P&gt;If you get a change please look into it as well -https://community.qlik.com/t5/Data-Quality/Use-measures-as-name-as-dimension-in-filters/m-p/2539952#M4342&lt;/P&gt;</description>
      <pubDate>Tue, 30 Dec 2025 08:27:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539982#M148985</guid>
      <dc:creator>Sunil645454</dc:creator>
      <dc:date>2025-12-30T08:27:56Z</dc:date>
    </item>
    <item>
      <title>Re: Identify common mobile number</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539989#M148986</link>
      <description>&lt;P&gt;I can't right now. I hope to remember when I have some spare time.&lt;/P&gt;&lt;P&gt;I took a look and it's hard to follow, can you prepare a sample qvf that explains the requirements with some dummy data and the expected reult?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Dec 2025 09:17:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539989#M148986</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2025-12-30T09:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: Identify common mobile number</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539993#M148987</link>
      <description>&lt;P&gt;Okay, I thought having mobile number issue resolved will resolve my other column but it is not working as I thought please check the screen shot I added email as well and it is giving correct result but mobile number should be there and vice versa, I am going to add the 3 column as well&amp;nbsp;&lt;/P&gt;&lt;P&gt;Load*&lt;BR /&gt;Inline [&lt;BR /&gt;Ref_ID,Mobile_Number,Email&lt;BR /&gt;Ref12345,9999999999,abc@gmail.com&lt;BR /&gt;Ref56789,9999999999,xyz@gmail&lt;BR /&gt;Ref98765,8888888888,abc@gmail.com&lt;BR /&gt;Ref98123,7777777777,mnc@gmail.com&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Sunil645454_0-1767100824131.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/185989i6164DC6263C46925/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Sunil645454_0-1767100824131.png" alt="Sunil645454_0-1767100824131.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Dec 2025 13:20:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2539993#M148987</guid>
      <dc:creator>Sunil645454</dc:creator>
      <dc:date>2025-12-30T13:20:59Z</dc:date>
    </item>
    <item>
      <title>Re: Identify common mobile number</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2540049#M148988</link>
      <description>&lt;P&gt;Hi, If you want to show all data when any of the columns is duplicated you can use:&lt;/P&gt;&lt;P&gt;=Only({&amp;lt;Mobile_Number=P(Mobile_Number),Ref_ID=&amp;gt;+&amp;lt;Email=P(Email), Ref_ID=&amp;gt;} Mobile_Number)&lt;/P&gt;&lt;P&gt;=Only({&amp;lt;Mobile_Number=P(Mobile_Number),Ref_ID=&amp;gt;+&amp;lt;Email=P(Email), Ref_ID=&amp;gt;} Email)&lt;/P&gt;</description>
      <pubDate>Wed, 31 Dec 2025 07:17:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2540049#M148988</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2025-12-31T07:17:47Z</dc:date>
    </item>
    <item>
      <title>Re: Identify common mobile number</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2540053#M148989</link>
      <description>&lt;P&gt;Thanks its working, can you please look into my other issue&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Data-Quality/Use-measures-as-name-as-dimension-in-filters/m-p/2539952#M4342" target="_blank"&gt;https://community.qlik.com/t5/Data-Quality/Use-measures-as-name-as-dimension-in-filters/m-p/2539952#M4342&lt;/A&gt;&amp;nbsp;I have attached the qvf there and here as well for the reference&lt;/P&gt;</description>
      <pubDate>Wed, 31 Dec 2025 08:30:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Identify-common-mobile-number/m-p/2540053#M148989</guid>
      <dc:creator>Sunil645454</dc:creator>
      <dc:date>2025-12-31T08:30:43Z</dc:date>
    </item>
  </channel>
</rss>

