<?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: Counting Concatenated Fields in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Counting-Concatenated-Fields/m-p/1573420#M456816</link>
    <description>&lt;P&gt;Glad I was able to help&lt;/P&gt;</description>
    <pubDate>Thu, 25 Apr 2019 15:52:26 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2019-04-25T15:52:26Z</dc:date>
    <item>
      <title>Counting Concatenated Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Counting-Concatenated-Fields/m-p/1573402#M456809</link>
      <description>&lt;P&gt;Hello Community.&lt;/P&gt;&lt;P&gt;I am trying to count the number of concatenated fields within the data set and show that figure s a KPI. I am using the below expression:&lt;/P&gt;&lt;P&gt;Count( Concat(DISTINCT Gateways&amp;amp;[Issue ID]) )&lt;/P&gt;&lt;P&gt;But I am getting an error.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help rendered will be appreciated.&lt;/P&gt;&lt;P&gt;Thank you.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 03:45:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Counting-Concatenated-Fields/m-p/1573402#M456809</guid>
      <dc:creator>ZoeM</dc:creator>
      <dc:date>2024-11-16T03:45:11Z</dc:date>
    </item>
    <item>
      <title>Re: Counting Concatenated Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Counting-Concatenated-Fields/m-p/1573403#M456810</link>
      <description>&lt;P&gt;May be you need this&lt;/P&gt;&lt;PRE&gt;Count(DISTINCT Gateways &amp;amp; [Issue ID])&lt;/PRE&gt;&lt;P&gt;or this&lt;/P&gt;&lt;PRE&gt;SubStringCount(Concat(DISTINCT Gateways&amp;amp;[Issue ID], ', '), ', ') + 1&lt;/PRE&gt;</description>
      <pubDate>Thu, 25 Apr 2019 15:18:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Counting-Concatenated-Fields/m-p/1573403#M456810</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-04-25T15:18:14Z</dc:date>
    </item>
    <item>
      <title>Re: Counting Concatenated Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Counting-Concatenated-Fields/m-p/1573406#M456811</link>
      <description>&lt;P&gt;Thanks for the response Sunny.&lt;/P&gt;&lt;P&gt;The first response works in a straight table, however, I am developing a KPI and it did not work. The main issue I am facing is duplicates and want to focus on distinct items only hence the need to concat.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried the second expressions and I did not get the anticipated result.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Apr 2019 15:24:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Counting-Concatenated-Fields/m-p/1573406#M456811</guid>
      <dc:creator>ZoeM</dc:creator>
      <dc:date>2019-04-25T15:24:46Z</dc:date>
    </item>
    <item>
      <title>Re: Counting Concatenated Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Counting-Concatenated-Fields/m-p/1573408#M456812</link>
      <description>&lt;P&gt;What is your dimension in the straight table where this worked? May be you need something like this&lt;/P&gt;&lt;PRE&gt;Sum(Aggr(Count(DISTINCT Gateways &amp;amp; [Issue ID]), Dimension/s))&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Apr 2019 15:29:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Counting-Concatenated-Fields/m-p/1573408#M456812</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-04-25T15:29:53Z</dc:date>
    </item>
    <item>
      <title>Re: Counting Concatenated Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Counting-Concatenated-Fields/m-p/1573409#M456813</link>
      <description>&lt;P&gt;So I got the second expression to work. However, it is counting all the results and I need to count only for the Dimension Issue Ctegory = 'Contained'...&lt;/P&gt;&lt;P&gt;=SubStringCount(Concat(DISTINCT Gateways&amp;amp;[Issue ID], ', '), ', ') + 1&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can I add that clause somewhere within the expression?&lt;/P&gt;</description>
      <pubDate>Thu, 25 Apr 2019 15:34:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Counting-Concatenated-Fields/m-p/1573409#M456813</guid>
      <dc:creator>ZoeM</dc:creator>
      <dc:date>2019-04-25T15:34:13Z</dc:date>
    </item>
    <item>
      <title>Re: Counting Concatenated Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Counting-Concatenated-Fields/m-p/1573418#M456814</link>
      <description>&lt;P&gt;May be this&lt;/P&gt;&lt;PRE&gt;=SubStringCount(Concat(DISTINCT &lt;FONT color="#FF0000"&gt;{&amp;lt;[Issue Category] = {'Contained'}&amp;gt;}&lt;/FONT&gt; Gateways&amp;amp;[Issue ID], ', '), ', ') + 1 &lt;/PRE&gt;</description>
      <pubDate>Thu, 25 Apr 2019 15:48:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Counting-Concatenated-Fields/m-p/1573418#M456814</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-04-25T15:48:49Z</dc:date>
    </item>
    <item>
      <title>Re: Counting Concatenated Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Counting-Concatenated-Fields/m-p/1573419#M456815</link>
      <description>&lt;P&gt;Can you help me understand how you did this? because it is amazing...you have no idea how long I have struggled with this.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Apr 2019 15:51:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Counting-Concatenated-Fields/m-p/1573419#M456815</guid>
      <dc:creator>ZoeM</dc:creator>
      <dc:date>2019-04-25T15:51:26Z</dc:date>
    </item>
    <item>
      <title>Re: Counting Concatenated Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Counting-Concatenated-Fields/m-p/1573420#M456816</link>
      <description>&lt;P&gt;Glad I was able to help&lt;/P&gt;</description>
      <pubDate>Thu, 25 Apr 2019 15:52:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Counting-Concatenated-Fields/m-p/1573420#M456816</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-04-25T15:52:26Z</dc:date>
    </item>
  </channel>
</rss>

