<?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: set expression to count highest symbol in the string in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/set-expression-to-count-highest-symbol-in-the-string/m-p/2474582#M100044</link>
    <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/22949"&gt;@tresB&lt;/a&gt;&amp;nbsp; It's working when we have unique values in ID. Actually I have repeated values for ID, so one ID may have multiple String with different length. How do we change set?&lt;/P&gt;</description>
    <pubDate>Mon, 05 Aug 2024 13:30:16 GMT</pubDate>
    <dc:creator>rob_vander</dc:creator>
    <dc:date>2024-08-05T13:30:16Z</dc:date>
    <item>
      <title>set expression to count highest symbol in the string</title>
      <link>https://community.qlik.com/t5/App-Development/set-expression-to-count-highest-symbol-in-the-string/m-p/2474558#M100040</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;I have below data set&lt;/P&gt;
&lt;P&gt;load * Inline [&lt;BR /&gt;ID,String&lt;BR /&gt;1,a:b:c&lt;BR /&gt;2,b:c:d&lt;BR /&gt;3,a:b&lt;BR /&gt;4,b:c]&lt;/P&gt;
&lt;P&gt;I want to count the Number of IDs where String contains most symbol ":". I this example, count will 2 (ID=1,2) because both contains more ":"symbol (i.e 2)&lt;/P&gt;
&lt;P&gt;I want to do it in expression as I don't have access to script.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2024 11:48:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/set-expression-to-count-highest-symbol-in-the-string/m-p/2474558#M100040</guid>
      <dc:creator>rob_vander</dc:creator>
      <dc:date>2024-08-05T11:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: set expression to count highest symbol in the string</title>
      <link>https://community.qlik.com/t5/App-Development/set-expression-to-count-highest-symbol-in-the-string/m-p/2474567#M100042</link>
      <description>&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Count({&amp;lt;ID={"=SubStringCount(String, ':')=Max(Total SubStringCount(String, ':'))"}&amp;gt;}ID)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tresesco_0-1722862524944.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/170220iE7FB5D5D31520866/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tresesco_0-1722862524944.png" alt="tresesco_0-1722862524944.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2024 12:55:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/set-expression-to-count-highest-symbol-in-the-string/m-p/2474567#M100042</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2024-08-05T12:55:34Z</dc:date>
    </item>
    <item>
      <title>Re: set expression to count highest symbol in the string</title>
      <link>https://community.qlik.com/t5/App-Development/set-expression-to-count-highest-symbol-in-the-string/m-p/2474582#M100044</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/22949"&gt;@tresB&lt;/a&gt;&amp;nbsp; It's working when we have unique values in ID. Actually I have repeated values for ID, so one ID may have multiple String with different length. How do we change set?&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2024 13:30:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/set-expression-to-count-highest-symbol-in-the-string/m-p/2474582#M100044</guid>
      <dc:creator>rob_vander</dc:creator>
      <dc:date>2024-08-05T13:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: set expression to count highest symbol in the string</title>
      <link>https://community.qlik.com/t5/App-Development/set-expression-to-count-highest-symbol-in-the-string/m-p/2474620#M100049</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/225019"&gt;@rob_vander&lt;/a&gt;&amp;nbsp; In this case, only way is to create Primary key column in script using RowNo() function then use it to display count&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Count({&amp;lt;&lt;STRONG&gt;Primary_key&lt;/STRONG&gt;={"=SubStringCount(String, ':')= $(=Max(SubStringCount(String, ':')))"}&amp;gt;}ID)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2024 23:10:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/set-expression-to-count-highest-symbol-in-the-string/m-p/2474620#M100049</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2024-08-05T23:10:59Z</dc:date>
    </item>
    <item>
      <title>Re: set expression to count highest symbol in the string</title>
      <link>https://community.qlik.com/t5/App-Development/set-expression-to-count-highest-symbol-in-the-string/m-p/2474650#M100053</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/336"&gt;@Kushal_Chawda&lt;/a&gt;&amp;nbsp; luckily I had a primary key in table so didn't create one but thanks for the solution.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2024 19:42:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/set-expression-to-count-highest-symbol-in-the-string/m-p/2474650#M100053</guid>
      <dc:creator>rob_vander</dc:creator>
      <dc:date>2024-08-05T19:42:17Z</dc:date>
    </item>
  </channel>
</rss>

