<?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: Symbolization of Non-Null Fields within Polygon Layer in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/symbolization-of-non-null-fields-within-polygon/m-p/1618068#M96042</link>
    <description>&lt;P&gt;Oof, let's try making this a bit easier for you.&lt;/P&gt;&lt;P&gt;We're going to use &lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/mapping/layer-properties/attribute-driven-symbology.htm" target="_blank" rel="noopener"&gt;attribute-driven symbology&lt;/A&gt;&amp;nbsp;to make this work.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Symbolize by single symbol&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_0-1748029255594.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133154i783BD8E75089C913/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_0-1748029255594.png" alt="AlfredBaldenweck_0-1748029255594.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;Go to edit that symbol&lt;/LI&gt;&lt;LI&gt;Hit the hamburger menu in the upper right of the Symbology Pane and turn on the "Allow SYmbol Property connections"&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_1-1748029356838.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133155i4C63FEBE6C66F140/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_1-1748029356838.png" alt="AlfredBaldenweck_1-1748029356838.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;There will now be little GDB icons next to different things in your symbol layer properties&amp;nbsp;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_2-1748029405317.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133156i5B7E1CAED0E059D2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_2-1748029405317.png" alt="AlfredBaldenweck_2-1748029405317.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;Go to the wrench tab and add a new marker symbol&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_3-1748029448118.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133157iCB38F3B8D5D27546/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_3-1748029448118.png" alt="AlfredBaldenweck_3-1748029448118.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;Switch back to the layers tab and change the symbol to an appropriate one. I chose a motorcycle for the bike field, for example&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_4-1748029497759.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133158iC71C964E051CC0FA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_4-1748029497759.png" alt="AlfredBaldenweck_4-1748029497759.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;Next to the "Size" parameter, hit the GDB icon&lt;/LI&gt;&lt;LI&gt;Hit the Green X button&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_5-1748029544365.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133159iB4230F9EA9042B0E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_5-1748029544365.png" alt="AlfredBaldenweck_5-1748029544365.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;Input the following code (change the field to match your field names)&lt;/LI&gt;&lt;/OL&gt;&lt;LI-CODE lang="javascript"&gt;if ($feature.Bike_Plans== null){
    return 0
}&lt;/LI-CODE&gt;&lt;OL&gt;&lt;LI&gt;Note: You can also try if(!IsEmpty($feature.Bike_Plans))... instead.&lt;/LI&gt;&lt;/OL&gt;&lt;UL&gt;&lt;LI&gt;Hit OK and OK Again&lt;/LI&gt;&lt;LI&gt;Apply your symbology&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_6-1748029836814.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133160i68C2BF4370EE9510/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_6-1748029836814.png" alt="AlfredBaldenweck_6-1748029836814.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;So, what we did was say "If this field is empty, make the symbol size 0". When the field is not empty, it will match whatever size you normally have in the size field.&lt;/P&gt;&lt;P&gt;Taking this, we can go back to the wrench tab and duplicate this symbol layer&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_7-1748029926433.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133161i306A24216ED947ED/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_7-1748029926433.png" alt="AlfredBaldenweck_7-1748029926433.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;and change the symbol and the field we're checking each time.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_8-1748029994513.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133163i50E83A7A2A15D1D8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_8-1748029994513.png" alt="AlfredBaldenweck_8-1748029994513.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_9-1748030010346.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133164i627DF0165E411984/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_9-1748030010346.png" alt="AlfredBaldenweck_9-1748030010346.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;And then we get this as the output&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_10-1748030559491.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133169i51AD3291A036C9AC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_10-1748030559491.png" alt="AlfredBaldenweck_10-1748030559491.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Be careful if doing random points to change the seed value each time, and change the spacing in general, or else they all end up on top of each other.&lt;/P&gt;&lt;P&gt;Now.&lt;/P&gt;&lt;P&gt;This is going to look awful in your legend.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_11-1748030635957.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133171i129152E10787D5D5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_11-1748030635957.png" alt="AlfredBaldenweck_11-1748030635957.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are other ways to do this, but I'd suggest making a dummy point feature class with a name field and 5 points.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Update the name field so each point matches your symbol classes&lt;/LI&gt;&lt;LI&gt;And change the heading to say like "Planned Use"&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_13-1748031004721.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133173iD4BF9802E5083DC4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_13-1748031004721.png" alt="AlfredBaldenweck_13-1748031004721.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;Now, duplicate the polygon layer and turn off all the points&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_14-1748031062520.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133174iC96E59909593ED37/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_14-1748031062520.png" alt="AlfredBaldenweck_14-1748031062520.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;In your Layout, change your legend's properties so that the "Layer visibility" box is unchecked&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_15-1748031122373.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133175i8E832D7435541475/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_15-1748031122373.png" alt="AlfredBaldenweck_15-1748031122373.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;Turn off or remove the layer with the symbology from your legend&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_18-1748031249052.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133178iAC512D2435FE8855/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_18-1748031249052.png" alt="AlfredBaldenweck_18-1748031249052.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;You now have an OK-looking legend.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_19-1748031288370.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133179i2A6D4419AE875260/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_19-1748031288370.png" alt="AlfredBaldenweck_19-1748031288370.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 23 May 2025 20:15:22 GMT</pubDate>
    <dc:creator>AlfredBaldenweck</dc:creator>
    <dc:date>2025-05-23T20:15:22Z</dc:date>
    <item>
      <title>Symbolization of Non-Null Fields within Polygon Layer</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/symbolization-of-non-null-fields-within-polygon/m-p/1618031#M96040</link>
      <description>&lt;P&gt;I am working on a map of different types of transportation plans in Virginia localities &lt;STRONG&gt;(324 records)&lt;/STRONG&gt; and I have hit a roadblock in the most efficient way to display the data. The layer I have created is a polygon layer of locality boundaries and the additional features/attribute fields I would like to display are:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;planning district&lt;/STRONG&gt; in which each locality resides -- currently symbolized with different fill color for each PDC of which there are 21.&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;want to display each of these fields as a &lt;STRONG&gt;unique point symbol&lt;/STRONG&gt; in each locality for which the respective field is &lt;STRONG&gt;non-null&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Bicycle Plans&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Multimodal Plans&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Active Transportation Plans&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Pedestrian Plans&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Trail Plans&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Other&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I plan to provide a legend for the symbolized attributes as well as configure pop-ups for each locality with specific data from the attribute table.&lt;/P&gt;&lt;P&gt;So far, I have come up with the following methods for symbology:&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Add a graphics layer and create points manually -- unique symbology respective to each of the above fields.&lt;/LI&gt;&lt;LI&gt;&lt;!--  StartFragment   --&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;Create individual layers for each plan type and symbolize by single symbol, unique to each layer/plan type -- layers created from&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;SPAN class=""&gt;Plans by Locality&lt;/SPAN&gt;&lt;/EM&gt;&lt;SPAN class=""&gt; using select by attribute where respective field values are not null. &lt;/SPAN&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;I would have to offset the symbology of each layer to avoid obscurity&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;&lt;SPAN&gt;Ideally, I would like to contain this data in a single layer but am not opposed to a layer package if necessary as I am unsure of the feasibility in having unique point symbols within a polygon layer.&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;Other considerations:&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;Using ArcPro Version 2.9&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;The data in this layer originated from a standalone attribute table/csv which I joined to a polygon feature layer of Virginia localities. There may be a workaround to displaying the attribute data spatially, but I am unsure of how to do this without compromising the connection between the localities and the plans which cover them.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;!--  EndFragment   --&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 19:34:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/symbolization-of-non-null-fields-within-polygon/m-p/1618031#M96040</guid>
      <dc:creator>OliverEmily</dc:creator>
      <dc:date>2025-05-23T19:34:21Z</dc:date>
    </item>
    <item>
      <title>Re: Symbolization of Non-Null Fields within Polygon Layer</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/symbolization-of-non-null-fields-within-polygon/m-p/1618068#M96042</link>
      <description>&lt;P&gt;Oof, let's try making this a bit easier for you.&lt;/P&gt;&lt;P&gt;We're going to use &lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/mapping/layer-properties/attribute-driven-symbology.htm" target="_blank" rel="noopener"&gt;attribute-driven symbology&lt;/A&gt;&amp;nbsp;to make this work.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Symbolize by single symbol&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_0-1748029255594.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133154i783BD8E75089C913/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_0-1748029255594.png" alt="AlfredBaldenweck_0-1748029255594.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;Go to edit that symbol&lt;/LI&gt;&lt;LI&gt;Hit the hamburger menu in the upper right of the Symbology Pane and turn on the "Allow SYmbol Property connections"&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_1-1748029356838.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133155i4C63FEBE6C66F140/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_1-1748029356838.png" alt="AlfredBaldenweck_1-1748029356838.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;There will now be little GDB icons next to different things in your symbol layer properties&amp;nbsp;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_2-1748029405317.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133156i5B7E1CAED0E059D2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_2-1748029405317.png" alt="AlfredBaldenweck_2-1748029405317.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;Go to the wrench tab and add a new marker symbol&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_3-1748029448118.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133157iCB38F3B8D5D27546/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_3-1748029448118.png" alt="AlfredBaldenweck_3-1748029448118.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;Switch back to the layers tab and change the symbol to an appropriate one. I chose a motorcycle for the bike field, for example&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_4-1748029497759.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133158iC71C964E051CC0FA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_4-1748029497759.png" alt="AlfredBaldenweck_4-1748029497759.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;Next to the "Size" parameter, hit the GDB icon&lt;/LI&gt;&lt;LI&gt;Hit the Green X button&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_5-1748029544365.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133159iB4230F9EA9042B0E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_5-1748029544365.png" alt="AlfredBaldenweck_5-1748029544365.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;Input the following code (change the field to match your field names)&lt;/LI&gt;&lt;/OL&gt;&lt;LI-CODE lang="javascript"&gt;if ($feature.Bike_Plans== null){
    return 0
}&lt;/LI-CODE&gt;&lt;OL&gt;&lt;LI&gt;Note: You can also try if(!IsEmpty($feature.Bike_Plans))... instead.&lt;/LI&gt;&lt;/OL&gt;&lt;UL&gt;&lt;LI&gt;Hit OK and OK Again&lt;/LI&gt;&lt;LI&gt;Apply your symbology&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_6-1748029836814.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133160i68C2BF4370EE9510/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_6-1748029836814.png" alt="AlfredBaldenweck_6-1748029836814.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;So, what we did was say "If this field is empty, make the symbol size 0". When the field is not empty, it will match whatever size you normally have in the size field.&lt;/P&gt;&lt;P&gt;Taking this, we can go back to the wrench tab and duplicate this symbol layer&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_7-1748029926433.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133161i306A24216ED947ED/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_7-1748029926433.png" alt="AlfredBaldenweck_7-1748029926433.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;and change the symbol and the field we're checking each time.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_8-1748029994513.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133163i50E83A7A2A15D1D8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_8-1748029994513.png" alt="AlfredBaldenweck_8-1748029994513.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_9-1748030010346.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133164i627DF0165E411984/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_9-1748030010346.png" alt="AlfredBaldenweck_9-1748030010346.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;And then we get this as the output&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_10-1748030559491.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133169i51AD3291A036C9AC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_10-1748030559491.png" alt="AlfredBaldenweck_10-1748030559491.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Be careful if doing random points to change the seed value each time, and change the spacing in general, or else they all end up on top of each other.&lt;/P&gt;&lt;P&gt;Now.&lt;/P&gt;&lt;P&gt;This is going to look awful in your legend.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_11-1748030635957.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133171i129152E10787D5D5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_11-1748030635957.png" alt="AlfredBaldenweck_11-1748030635957.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are other ways to do this, but I'd suggest making a dummy point feature class with a name field and 5 points.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Update the name field so each point matches your symbol classes&lt;/LI&gt;&lt;LI&gt;And change the heading to say like "Planned Use"&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_13-1748031004721.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133173iD4BF9802E5083DC4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_13-1748031004721.png" alt="AlfredBaldenweck_13-1748031004721.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;Now, duplicate the polygon layer and turn off all the points&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_14-1748031062520.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133174iC96E59909593ED37/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_14-1748031062520.png" alt="AlfredBaldenweck_14-1748031062520.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;In your Layout, change your legend's properties so that the "Layer visibility" box is unchecked&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_15-1748031122373.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133175i8E832D7435541475/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_15-1748031122373.png" alt="AlfredBaldenweck_15-1748031122373.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;Turn off or remove the layer with the symbology from your legend&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_18-1748031249052.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133178iAC512D2435FE8855/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_18-1748031249052.png" alt="AlfredBaldenweck_18-1748031249052.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;You now have an OK-looking legend.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_19-1748031288370.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/133179i2A6D4419AE875260/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_19-1748031288370.png" alt="AlfredBaldenweck_19-1748031288370.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 20:15:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/symbolization-of-non-null-fields-within-polygon/m-p/1618068#M96042</guid>
      <dc:creator>AlfredBaldenweck</dc:creator>
      <dc:date>2025-05-23T20:15:22Z</dc:date>
    </item>
    <item>
      <title>Re: Symbolization of Non-Null Fields within Polygon Layer</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/symbolization-of-non-null-fields-within-polygon/m-p/1618070#M96043</link>
      <description>&lt;P&gt;This is amazing! Thank you so much for working through my chaos haha, I figured I was making this a bit too difficult for myself.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 20:19:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/symbolization-of-non-null-fields-within-polygon/m-p/1618070#M96043</guid>
      <dc:creator>OliverEmily</dc:creator>
      <dc:date>2025-05-23T20:19:14Z</dc:date>
    </item>
    <item>
      <title>Re: Symbolization of Non-Null Fields within Polygon Layer</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/symbolization-of-non-null-fields-within-polygon/m-p/1618085#M96045</link>
      <description>&lt;P&gt;It's one of my favorite capabilities in Pro. You can do a lot of cool stuff with it.&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 20:25:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/symbolization-of-non-null-fields-within-polygon/m-p/1618085#M96045</guid>
      <dc:creator>AlfredBaldenweck</dc:creator>
      <dc:date>2025-05-23T20:25:25Z</dc:date>
    </item>
  </channel>
</rss>

