<?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 Additional Remove Duplicate Labels Option in ArcGIS Pro Ideas</title>
    <link>https://community.esri.com/t5/arcgis-pro-ideas/additional-remove-duplicate-labels-option/idi-p/1252424</link>
    <description>&lt;P&gt;Building rather complex labeling expressions for labeling street block ranges can be very challenging. I think it would be cool if there was an option to remove duplicate based on an attribute. If one has various fields with the same attribute (in this example '0') then one could easily remove that duplicated label across everything.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="roadlabel.PNG" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/61478i27268CB4D0DEED7B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="roadlabel.PNG" alt="roadlabel.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 27 Jan 2023 17:06:20 GMT</pubDate>
    <dc:creator>LaurenLumHee</dc:creator>
    <dc:date>2023-01-27T17:06:20Z</dc:date>
    <item>
      <title>Additional Remove Duplicate Labels Option</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/additional-remove-duplicate-labels-option/idi-p/1252424</link>
      <description>&lt;P&gt;Building rather complex labeling expressions for labeling street block ranges can be very challenging. I think it would be cool if there was an option to remove duplicate based on an attribute. If one has various fields with the same attribute (in this example '0') then one could easily remove that duplicated label across everything.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="roadlabel.PNG" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/61478i27268CB4D0DEED7B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="roadlabel.PNG" alt="roadlabel.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jan 2023 17:06:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/additional-remove-duplicate-labels-option/idi-p/1252424</guid>
      <dc:creator>LaurenLumHee</dc:creator>
      <dc:date>2023-01-27T17:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: Additional Remove Duplicate Labels Option</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/additional-remove-duplicate-labels-option/idc-p/1253034#M23079</link>
      <description>&lt;P&gt;Depending on your preference, there are a few ways to remove duplicate address number labels. Each of these suggestions uses the &lt;EM&gt;Street address placement&lt;/EM&gt; label placement style. In the examples below, note the address placements along S KENOSHA DR, which has some duplicate (0) placements along one side of certain segments. Orange arrows indicate line direction. Red labels are from/low address ranges and blue labels are to/high address ranges.&lt;/P&gt;&lt;H3&gt;Method 1: Only display duplicate value in the "to" address label&lt;/H3&gt;&lt;P&gt;If the segment has the same address range for the from/low and to/high, use an arcade expression to only show the duplicated address range value once - in the to/high position.&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1" width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="50%"&gt;&lt;STRONG&gt;Default placement&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD width="50%"&gt;&lt;STRONG&gt;Removing duplicate values along same side&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="50%"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JesseWickizer_2-1675096515206.png"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/61629iB7BC166EE5809971/image-size/large?v=v2&amp;amp;px=999" role="button" title="JesseWickizer_2-1675096515206.png" alt="JesseWickizer_2-1675096515206.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="50%"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JesseWickizer_1-1675096495139.png"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/61628i0282096B8678C721/image-size/large?v=v2&amp;amp;px=999" role="button" title="JesseWickizer_1-1675096495139.png" alt="JesseWickizer_1-1675096495139.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;The label expression for the From addresses uses this arcade expression:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var l_from = $feature.l_lo_addr;
if ($feature.l_lo_addr == $feature.l_hi_addr) {
  l_from = "";
}
var r_from = $feature.r_lo_addr;
if ($feature.r_lo_addr == $feature.r_hi_addr) {
  r_from = "";
}

return l_from + TextFormatting.NewLine + r_from&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The label expression for the To addresses uses the usual arcade expression for street address labeling:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;$feature.l_hi_addr + TextFormatting.NewLine + $feature.r_hi_addr&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H3&gt;Method 2: Don't display "0" values&lt;/H3&gt;&lt;P&gt;Use Arcade expressions in the label classes to suppress "0" values. Similar to the above, but just suppressing all address range values of zero.&lt;/P&gt;&lt;TABLE border="1" width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="50%"&gt;&lt;STRONG&gt;Default placement&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD width="50%"&gt;&lt;STRONG&gt;Removing all zero values&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="50%"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JesseWickizer_3-1675096794258.png"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/61630i194FB3C2B4A8FA0D/image-size/large?v=v2&amp;amp;px=999" role="button" title="JesseWickizer_3-1675096794258.png" alt="JesseWickizer_3-1675096794258.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="50%"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JesseWickizer_4-1675096806134.png"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/61631iDDC3713B2668D638/image-size/large?v=v2&amp;amp;px=999" role="button" title="JesseWickizer_4-1675096806134.png" alt="JesseWickizer_4-1675096806134.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;The label expression for the From addresses:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var l_from = $feature.l_lo_addr;
if (l_from == 0) {
  l_from = "";
}
var r_from = $feature.r_lo_addr;
if (r_from == 0) {
  r_from = "";
}

return l_from + TextFormatting.NewLine + r_from&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The label expression for the To addresses:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var l_to = $feature.l_hi_addr;
if (l_to == 0) {
  l_to = "";
}
var r_to = $feature.r_hi_addr;
if (r_to == 0) {
  r_to = "";
}

return l_to + TextFormatting.NewLine + r_to&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jan 2023 19:42:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/additional-remove-duplicate-labels-option/idc-p/1253034#M23079</guid>
      <dc:creator>JesseWickizer</dc:creator>
      <dc:date>2023-01-30T19:42:18Z</dc:date>
    </item>
    <item>
      <title>Re: Additional Remove Duplicate Labels Option - Status changed to: Already Offered</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/additional-remove-duplicate-labels-option/idc-p/1419917#M29925</link>
      <description />
      <pubDate>Tue, 07 May 2024 14:52:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/additional-remove-duplicate-labels-option/idc-p/1419917#M29925</guid>
      <dc:creator>WendyHarrison</dc:creator>
      <dc:date>2024-05-07T14:52:39Z</dc:date>
    </item>
  </channel>
</rss>

