<?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: How to display only the associated values with respect to only selected values in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-display-only-the-associated-values-with-respect-to-only/m-p/1880601#M72573</link>
    <description>&lt;P&gt;Awesome you are, it works. Thanks for your help&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;.&lt;/P&gt;
&lt;P&gt;Only thing is, instead of Measure we have to take 2nd column as Dimension only.&lt;/P&gt;</description>
    <pubDate>Thu, 13 Jan 2022 11:09:36 GMT</pubDate>
    <dc:creator>tauceef</dc:creator>
    <dc:date>2022-01-13T11:09:36Z</dc:date>
    <item>
      <title>How to display only the associated values with respect to only selected values</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-display-only-the-associated-values-with-respect-to-only/m-p/1880462#M72555</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;We have a requirement where we need to show one table with data associated with all filter values applied.&lt;/P&gt;
&lt;P&gt;Data sample:&lt;/P&gt;
&lt;P&gt;Test:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;Patient, Symptoms&lt;BR /&gt;A, Cough&lt;BR /&gt;A, Fever&lt;BR /&gt;A, Cold&lt;BR /&gt;C, Cough&lt;BR /&gt;C, Cold&lt;BR /&gt;D, Cold&lt;BR /&gt;E, Cough&lt;BR /&gt;F, Fever&lt;BR /&gt;];&lt;/P&gt;
&lt;P&gt;we will have filter for Symptoms and one table with Patient.&lt;/P&gt;
&lt;P&gt;So when we apply filter for "Fever" only Patient F should display&lt;/P&gt;
&lt;P&gt;when we select "Cough &amp;amp; Cold" Only Patient C should display&lt;/P&gt;
&lt;P&gt;likewise if we select "Cold" only Patient D should display.&lt;/P&gt;
&lt;P&gt;Any help would be great.&lt;/P&gt;
&lt;P&gt;Regards, Tauceef&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jan 2022 06:04:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-display-only-the-associated-values-with-respect-to-only/m-p/1880462#M72555</guid>
      <dc:creator>tauceef</dc:creator>
      <dc:date>2022-01-13T06:04:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to display only the associated values with respect to only selected values</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-display-only-the-associated-values-with-respect-to-only/m-p/1880576#M72572</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/80083"&gt;@tauceef&lt;/a&gt;&amp;nbsp; may be like this :&lt;/P&gt;
&lt;P&gt;in load script:&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;Test:
LOAD * INLINE [
Patient, Symptoms
A, Cough
A, Cough
A, Fever
A, Cold
C, Cough
C, Cold
D, Cold
E, Cough
F, Fever
];
left join load Patient,concat(distinct Symptoms,', ') as conatSymptoms resident Test group by Patient;&lt;/LI-CODE&gt;
&lt;P&gt;and then create table&lt;/P&gt;
&lt;P&gt;dimension: Patient&lt;/P&gt;
&lt;P&gt;measure:&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;if(GetFieldSelections(Symptoms)=conatSymptoms,GetFieldSelections(Symptoms))&lt;/LI-CODE&gt;
&lt;P&gt;and uncheck inclure null value&lt;/P&gt;
&lt;P&gt;output:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Taoufiq_Zarra_0-1642069080620.png"&gt;&lt;img src="https://community.qlik.com/skins/images/C5FA59D18544CB42600F6BC5E9F00E2B/responsive_peak/images/image_not_found.png" alt="Taoufiq_Zarra_0-1642069080620.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Taoufiq_Zarra_1-1642069222957.png"&gt;&lt;img src="https://community.qlik.com/skins/images/C5FA59D18544CB42600F6BC5E9F00E2B/responsive_peak/images/image_not_found.png" alt="Taoufiq_Zarra_1-1642069222957.png" /&gt;&lt;/span&gt;&lt;/P&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="Taoufiq_Zarra_2-1642069261930.png"&gt;&lt;img src="https://community.qlik.com/skins/images/C5FA59D18544CB42600F6BC5E9F00E2B/responsive_peak/images/image_not_found.png" alt="Taoufiq_Zarra_2-1642069261930.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jan 2022 10:21:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-display-only-the-associated-values-with-respect-to-only/m-p/1880576#M72572</guid>
      <dc:creator>Taoufiq_Zarra</dc:creator>
      <dc:date>2022-01-13T10:21:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to display only the associated values with respect to only selected values</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-display-only-the-associated-values-with-respect-to-only/m-p/1880601#M72573</link>
      <description>&lt;P&gt;Awesome you are, it works. Thanks for your help&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;.&lt;/P&gt;
&lt;P&gt;Only thing is, instead of Measure we have to take 2nd column as Dimension only.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jan 2022 11:09:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-display-only-the-associated-values-with-respect-to-only/m-p/1880601#M72573</guid>
      <dc:creator>tauceef</dc:creator>
      <dc:date>2022-01-13T11:09:36Z</dc:date>
    </item>
  </channel>
</rss>

