<?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: Count Set analysis for Equal fields from different tables - does that work? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Count-Set-analysis-for-Equal-fields-from-different-tables-does/m-p/1538409#M38873</link>
    <description>&lt;P&gt;You should be able to ignore selections even with an if statement&lt;/P&gt;&lt;PRE&gt;If(Only({1} [Leads.LeadCode]) = Only({1} [Leaflet Design]),&lt;/PRE&gt;&lt;P&gt;But if it is inside your Count function, you might not need it.... If you can share the exact expression which worked without any selection, we might be able to help you point out any changes that you might need in it to make it work with selections (everything ignored)&lt;/P&gt;</description>
    <pubDate>Fri, 01 Feb 2019 12:42:15 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2019-02-01T12:42:15Z</dc:date>
    <item>
      <title>Count Set analysis for Equal fields from different tables - does that work?</title>
      <link>https://community.qlik.com/t5/App-Development/Count-Set-analysis-for-Equal-fields-from-different-tables-does/m-p/1538347#M38863</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to perform set analysis to count something by having two fields equal each other. These two field are from different data tables - does that work?&amp;nbsp;&lt;/P&gt;&lt;P&gt;The fields [Leads.LeadCode] and [Leaflet Design] are in different tables but a linked together by a common field.&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;count({1&amp;lt;[Leads.LeadType]={'Retail'}, [Leads.LeadCode]=[Leaflet Design], [Fixed_Dates.Date.autoCalendar.WeeksAgo]={"&amp;lt;=$(=$(vLastWeek)+12)&amp;gt;$(=$(vLastWeek)-1)"}, [Leaflet Design]={'RM155','HD211','LD106','LD215'}&amp;gt; distinct [Leads.LeadID]&amp;amp;[Leads.First]&amp;amp;[Leads.Last])&lt;/PRE&gt;&lt;P&gt;any help?&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 21:29:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Count-Set-analysis-for-Equal-fields-from-different-tables-does/m-p/1538347#M38863</guid>
      <dc:creator>Joseph_Kipling</dc:creator>
      <dc:date>2024-11-16T21:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: Count Set analysis for Equal fields from different tables - does that work?</title>
      <link>https://community.qlik.com/t5/App-Development/Count-Set-analysis-for-Equal-fields-from-different-tables-does/m-p/1538361#M38864</link>
      <description>if([Leads.LeadCode]=[Leaflet Design],&lt;BR /&gt;count({1&amp;lt;[Leads.LeadType]={'Retail'}, [Fixed_Dates.Date.autoCalendar.WeeksAgo]={"&amp;lt;=$(=$(vLastWeek)+12)&amp;gt;$(=$(vLastWeek)-1)"}, [Leaflet Design]={'RM155','HD211','LD106','LD215'}&amp;gt; distinct [Leads.LeadID]&amp;amp;[Leads.First]&amp;amp;[Leads.Last]))&lt;BR /&gt;&lt;BR /&gt;and if you have any unique field and all the rows concerned are uniquely defined&lt;BR /&gt;&lt;BR /&gt;count({1&amp;lt;[Leads.LeadType]={'Retail'}, unique_field={"=[Leads.LeadCode]=[Leaflet Design]"}, [Fixed_Dates.Date.autoCalendar.WeeksAgo]={"&amp;lt;=$(=$(vLastWeek)+12)&amp;gt;$(=$(vLastWeek)-1)"}, [Leaflet Design]={'RM155','HD211','LD106','LD215'}&amp;gt; distinct [Leads.LeadID]&amp;amp;[Leads.First]&amp;amp;[Leads.Last])</description>
      <pubDate>Fri, 01 Feb 2019 11:03:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Count-Set-analysis-for-Equal-fields-from-different-tables-does/m-p/1538361#M38864</guid>
      <dc:creator>pradosh_thakur</dc:creator>
      <dc:date>2019-02-01T11:03:26Z</dc:date>
    </item>
    <item>
      <title>Re: Count Set analysis for Equal fields from different tables - does that work?</title>
      <link>https://community.qlik.com/t5/App-Development/Count-Set-analysis-for-Equal-fields-from-different-tables-does/m-p/1538363#M38865</link>
      <description>&lt;P&gt;OK thanks, my concern was the the if statement was then not within the count function and i wanted to have a function that ignores filters. Can you do this with an if statement?&lt;/P&gt;</description>
      <pubDate>Fri, 01 Feb 2019 11:10:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Count-Set-analysis-for-Equal-fields-from-different-tables-does/m-p/1538363#M38865</guid>
      <dc:creator>Joseph_Kipling</dc:creator>
      <dc:date>2019-02-01T11:10:47Z</dc:date>
    </item>
    <item>
      <title>Re: Count Set analysis for Equal fields from different tables - does that work?</title>
      <link>https://community.qlik.com/t5/App-Development/Count-Set-analysis-for-Equal-fields-from-different-tables-does/m-p/1538364#M38866</link>
      <description>Did the above work ? I didn't get what you are asking for ?</description>
      <pubDate>Fri, 01 Feb 2019 11:13:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Count-Set-analysis-for-Equal-fields-from-different-tables-does/m-p/1538364#M38866</guid>
      <dc:creator>pradosh_thakur</dc:creator>
      <dc:date>2019-02-01T11:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: Count Set analysis for Equal fields from different tables - does that work?</title>
      <link>https://community.qlik.com/t5/App-Development/Count-Set-analysis-for-Equal-fields-from-different-tables-does/m-p/1538368#M38868</link>
      <description>&lt;P&gt;Yes that worked - Thanks. I actually had this solution previously but the aim was for the calculation to ignore all selections. At the moment, when i select a filter the chart updates (I would like it not to change).&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Feb 2019 11:21:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Count-Set-analysis-for-Equal-fields-from-different-tables-does/m-p/1538368#M38868</guid>
      <dc:creator>Joseph_Kipling</dc:creator>
      <dc:date>2019-02-01T11:21:43Z</dc:date>
    </item>
    <item>
      <title>Re: Count Set analysis for Equal fields from different tables - does that work?</title>
      <link>https://community.qlik.com/t5/App-Development/Count-Set-analysis-for-Equal-fields-from-different-tables-does/m-p/1538371#M38869</link>
      <description>Ohk. Even when you use 1 ? Anything else you need or you got the answer?</description>
      <pubDate>Fri, 01 Feb 2019 11:26:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Count-Set-analysis-for-Equal-fields-from-different-tables-does/m-p/1538371#M38869</guid>
      <dc:creator>pradosh_thakur</dc:creator>
      <dc:date>2019-02-01T11:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: Count Set analysis for Equal fields from different tables - does that work?</title>
      <link>https://community.qlik.com/t5/App-Development/Count-Set-analysis-for-Equal-fields-from-different-tables-does/m-p/1538396#M38872</link>
      <description>&lt;P&gt;Yes even when I use 1.. weird&lt;/P&gt;</description>
      <pubDate>Fri, 01 Feb 2019 12:14:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Count-Set-analysis-for-Equal-fields-from-different-tables-does/m-p/1538396#M38872</guid>
      <dc:creator>Joseph_Kipling</dc:creator>
      <dc:date>2019-02-01T12:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: Count Set analysis for Equal fields from different tables - does that work?</title>
      <link>https://community.qlik.com/t5/App-Development/Count-Set-analysis-for-Equal-fields-from-different-tables-does/m-p/1538409#M38873</link>
      <description>&lt;P&gt;You should be able to ignore selections even with an if statement&lt;/P&gt;&lt;PRE&gt;If(Only({1} [Leads.LeadCode]) = Only({1} [Leaflet Design]),&lt;/PRE&gt;&lt;P&gt;But if it is inside your Count function, you might not need it.... If you can share the exact expression which worked without any selection, we might be able to help you point out any changes that you might need in it to make it work with selections (everything ignored)&lt;/P&gt;</description>
      <pubDate>Fri, 01 Feb 2019 12:42:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Count-Set-analysis-for-Equal-fields-from-different-tables-does/m-p/1538409#M38873</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-02-01T12:42:15Z</dc:date>
    </item>
  </channel>
</rss>

