<?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>idea how to remove last 3 commas data in ArcGIS Online Ideas</title>
    <link>https://community.esri.com/t5/arcgis-online-ideas/how-to-remove-last-3-commas-data/idi-p/1291041</link>
    <description>&lt;TABLE width="61px"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="98.7375px"&gt;&lt;STRONG&gt;Field_Name&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="98.7375px"&gt;a,b,c&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="98.7375px"&gt;w,f,b,j&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="98.7375px"&gt;g,y,x,o&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="98.7375px"&gt;I,o&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="98.7375px"&gt;p,p,r,c,g,k&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="98.7375px"&gt;p,p,r,c&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;in above table i want remove data after 2 comma. can any pls suggest.&lt;/P&gt;</description>
    <pubDate>Fri, 19 May 2023 13:41:15 GMT</pubDate>
    <dc:creator>KarraRAJENDAR</dc:creator>
    <dc:date>2023-05-19T13:41:15Z</dc:date>
    <item>
      <title>how to remove last 3 commas data</title>
      <link>https://community.esri.com/t5/arcgis-online-ideas/how-to-remove-last-3-commas-data/idi-p/1291041</link>
      <description>&lt;TABLE width="61px"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="98.7375px"&gt;&lt;STRONG&gt;Field_Name&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="98.7375px"&gt;a,b,c&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="98.7375px"&gt;w,f,b,j&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="98.7375px"&gt;g,y,x,o&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="98.7375px"&gt;I,o&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="98.7375px"&gt;p,p,r,c,g,k&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="98.7375px"&gt;p,p,r,c&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;in above table i want remove data after 2 comma. can any pls suggest.&lt;/P&gt;</description>
      <pubDate>Fri, 19 May 2023 13:41:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-ideas/how-to-remove-last-3-commas-data/idi-p/1291041</guid>
      <dc:creator>KarraRAJENDAR</dc:creator>
      <dc:date>2023-05-19T13:41:15Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove last 3 commas data</title>
      <link>https://community.esri.com/t5/arcgis-online-ideas/how-to-remove-last-3-commas-data/idc-p/1291046#M10113</link>
      <description>&lt;P&gt;You can do this in Arcade&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var arr = Split($feature.Field_Name, ',')
if (Count(arr) &amp;lt; 3) return $feature.Field_Name;
return Concatenate([arr[0], arr[1], arr[2]], ',');&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 May 2023 14:10:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-ideas/how-to-remove-last-3-commas-data/idc-p/1291046#M10113</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2023-05-19T14:10:30Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove last 3 commas data</title>
      <link>https://community.esri.com/t5/arcgis-online-ideas/how-to-remove-last-3-commas-data/idc-p/1291102#M10115</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/2839"&gt;@KenBuja&lt;/a&gt;&amp;nbsp;can u please give for calculation in arcmap&lt;/P&gt;</description>
      <pubDate>Fri, 19 May 2023 15:34:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-ideas/how-to-remove-last-3-commas-data/idc-p/1291102#M10115</guid>
      <dc:creator>KarraRAJENDAR</dc:creator>
      <dc:date>2023-05-19T15:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove last 3 commas data</title>
      <link>https://community.esri.com/t5/arcgis-online-ideas/how-to-remove-last-3-commas-data/idc-p/1291151#M10117</link>
      <description>&lt;P&gt;You should mention what you're working in when posting a question.&lt;/P&gt;&lt;P&gt;This Python script will do what you want&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;def Calc(field):
  arr = field.split(",")
  if (len(arr) &amp;lt; 3):
    return field 
  else:
    return ",".join(arr)&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 19 May 2023 16:37:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-ideas/how-to-remove-last-3-commas-data/idc-p/1291151#M10117</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2023-05-19T16:37:58Z</dc:date>
    </item>
  </channel>
</rss>

