<?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 find unique strings separated by comma for each row in a column and count the total recurrence in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/find-unique-strings-separated-by-comma-for-each-row-in-a-column/m-p/883486#M104761</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wonder if there is a way to create column with formula to find unique strings separated by comma in a column and count total recurrence of each like below?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dadawasozo_1-1751749418746.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/77845i410B51E52C284C63/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dadawasozo_1-1751749418746.png" alt="dadawasozo_1-1751749418746.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;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 05 Jul 2025 21:04:11 GMT</pubDate>
    <dc:creator>dadawasozo</dc:creator>
    <dc:date>2025-07-05T21:04:11Z</dc:date>
    <item>
      <title>find unique strings separated by comma for each row in a column and count the total recurrence</title>
      <link>https://community.jmp.com/t5/Discussions/find-unique-strings-separated-by-comma-for-each-row-in-a-column/m-p/883486#M104761</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wonder if there is a way to create column with formula to find unique strings separated by comma in a column and count total recurrence of each like below?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dadawasozo_1-1751749418746.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/77845i410B51E52C284C63/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dadawasozo_1-1751749418746.png" alt="dadawasozo_1-1751749418746.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;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 05 Jul 2025 21:04:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/find-unique-strings-separated-by-comma-for-each-row-in-a-column/m-p/883486#M104761</guid>
      <dc:creator>dadawasozo</dc:creator>
      <dc:date>2025-07-05T21:04:11Z</dc:date>
    </item>
    <item>
      <title>Re: find unique strings separated by comma for each row in a column and count the total recurrence</title>
      <link>https://community.jmp.com/t5/Discussions/find-unique-strings-separated-by-comma-for-each-row-in-a-column/m-p/883508#M104763</link>
      <description>&lt;P&gt;Here is one way of handling this&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1751756988501.png" style="width: 609px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/77847iE34AC9BD2D98D16E/image-dimensions/609x332?v=v2" width="609" height="332" role="button" title="txnelson_0-1751756988501.png" alt="txnelson_0-1751756988501.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Unique Item formula&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;x = Words( :Input, "," );
For Each( {element, index}, x, x[index] = Trim( element ) );
x = Associative Array( x ) &amp;lt;&amp;lt; get keys;
x = Concat Items( x, "," );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Total Recurrence formula&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;x = Words( :Input, "," );
For Each( {element, index}, x, x[index] = Trim( element ) );
theList = Associative Array( x ) &amp;lt;&amp;lt; get keys;
value = "";
For Each( {element}, theList, value = value || "," || Char( N Rows( Loc( x, element ) ) ) );
Substr( value, 2 );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 06 Jul 2025 02:36:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/find-unique-strings-separated-by-comma-for-each-row-in-a-column/m-p/883508#M104763</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2025-07-06T02:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: find unique strings separated by comma for each row in a column and count the total recurrence</title>
      <link>https://community.jmp.com/t5/Discussions/find-unique-strings-separated-by-comma-for-each-row-in-a-column/m-p/883511#M104764</link>
      <description>&lt;P&gt;Hi Jim,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;it looks like both formula is same&lt;/P&gt;</description>
      <pubDate>Sun, 06 Jul 2025 02:26:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/find-unique-strings-separated-by-comma-for-each-row-in-a-column/m-p/883511#M104764</guid>
      <dc:creator>dadawasozo</dc:creator>
      <dc:date>2025-07-06T02:26:35Z</dc:date>
    </item>
    <item>
      <title>Re: find unique strings separated by comma for each row in a column and count the total recurrence</title>
      <link>https://community.jmp.com/t5/Discussions/find-unique-strings-separated-by-comma-for-each-row-in-a-column/m-p/883514#M104765</link>
      <description>&lt;P&gt;My error......I corrected my initial post to the correct formula&lt;/P&gt;</description>
      <pubDate>Sun, 06 Jul 2025 02:37:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/find-unique-strings-separated-by-comma-for-each-row-in-a-column/m-p/883514#M104765</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2025-07-06T02:37:28Z</dc:date>
    </item>
    <item>
      <title>Re: find unique strings separated by comma for each row in a column and count the total recurrence</title>
      <link>https://community.jmp.com/t5/Discussions/find-unique-strings-separated-by-comma-for-each-row-in-a-column/m-p/883526#M104767</link>
      <description>&lt;P&gt;Thank you for the helps!!!&lt;/P&gt;</description>
      <pubDate>Sun, 06 Jul 2025 02:43:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/find-unique-strings-separated-by-comma-for-each-row-in-a-column/m-p/883526#M104767</guid>
      <dc:creator>dadawasozo</dc:creator>
      <dc:date>2025-07-06T02:43:30Z</dc:date>
    </item>
  </channel>
</rss>

