<?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: Symbolizing Unique values with wildcards in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272420#M67274</link>
    <description>&lt;P&gt;Here is the final product.&amp;nbsp; It's working nicely!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BrianBulla_0-1680009432786.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/66483i0B8234A5092046CE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BrianBulla_0-1680009432786.png" alt="BrianBulla_0-1680009432786.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;// for features without INSP_STATUS, return the subtype
if(IsEmpty($feature.INSP_STATUS)) {
    var subtypes = ["MaintenanceHole", "InspectionMH", "BackFlow", "DiversionMH", "FlapGateMH"]
    var i = $feature.SubtypeCD - 1
    return subtypes[i]
}

// for features with INSP_STATUS = YES
if ($feature.INSP_STATUS == "YES")
{
    return "YES"
};

// for features with INSP_STATUS = WR LOW
if ($feature.INSP_STATUS == "LOW")
{
    return "LOW"
};

// for features with INSP_STATUS = WR HIGH
if ($feature.INSP_STATUS == "HIGH")
{
    return "HIGH"
};

// for features with INSP_STATUS = CR
if ($feature.INSP_STATUS == "CR")
{
    return "CR"
};&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 28 Mar 2023 13:17:58 GMT</pubDate>
    <dc:creator>BrianBulla</dc:creator>
    <dc:date>2023-03-28T13:17:58Z</dc:date>
    <item>
      <title>Symbolizing Unique values with wildcards</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272084#M67235</link>
      <description>&lt;P&gt;So I need to symbolize based on two attributes:&amp;nbsp; the INSP_STATUS and the Subtype.&amp;nbsp; If there is no INSP_STATUS (ie. = null), than each subtype will have a different symbol.&lt;/P&gt;&lt;P&gt;But....if there is an INSP_STATUS (ie. a few different options), than regardless of the Subtype, they can all be the same symbol.&amp;nbsp; This is what I have so far....a symbol for each subtype:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BrianBulla_1-1679942740899.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/66378i9CABCF3192131541/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BrianBulla_1-1679942740899.png" alt="BrianBulla_1-1679942740899.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I try to add a custom value with some conditional statement for the "YES" INSP_STATUS to cover all of the sybytpes, I just get an error:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BrianBulla_0-1679942694097.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/66377i65A8064ECB64319A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BrianBulla_0-1679942694097.png" alt="BrianBulla_0-1679942694097.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Does anyone know how to accomplish this??&amp;nbsp; Or do I just need to make a symbol for every possible combination of INSP_STATUS and Subtype??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Mar 2023 18:47:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272084#M67235</guid>
      <dc:creator>BrianBulla</dc:creator>
      <dc:date>2023-03-27T18:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: Symbolizing Unique values with wildcards</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272092#M67236</link>
      <description>&lt;P&gt;Can you change your primary symbology to Manual Breaks and categorize the symbology that way? Just click the more option and select show values out of range for the null option&lt;/P&gt;</description>
      <pubDate>Mon, 27 Mar 2023 19:04:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272092#M67236</guid>
      <dc:creator>SLouq</dc:creator>
      <dc:date>2023-03-27T19:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: Symbolizing Unique values with wildcards</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272097#M67237</link>
      <description>&lt;P&gt;Manual Breaks??&amp;nbsp; I'm not sure what you are talking about.&amp;nbsp; I'm using Unique Values with two attributes....Subtype Code and INSP_STATUS.&amp;nbsp; I'm not symbolizing numerical data.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Mar 2023 19:08:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272097#M67237</guid>
      <dc:creator>BrianBulla</dc:creator>
      <dc:date>2023-03-27T19:08:21Z</dc:date>
    </item>
    <item>
      <title>Re: Symbolizing Unique values with wildcards</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272108#M67238</link>
      <description>&lt;P&gt;Maybe you can't use Manual Breaks then. Try different Primary symbology and see if you can accomplish your goal that way.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Mar 2023 19:21:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272108#M67238</guid>
      <dc:creator>SLouq</dc:creator>
      <dc:date>2023-03-27T19:21:37Z</dc:date>
    </item>
    <item>
      <title>Re: Symbolizing Unique values with wildcards</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272121#M67241</link>
      <description>&lt;P&gt;Could you use the "show all other values" option?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DanielMiranda2_0-1679945532177.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/66393iEA295E6530153B88/image-size/medium?v=v2&amp;amp;px=400" role="button" title="DanielMiranda2_0-1679945532177.png" alt="DanielMiranda2_0-1679945532177.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Since you already specify symbols for all subtypes when there is not an insp_status, and want everything else to be the same symbol, then that should be "all other values" if I understand correctly.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Mar 2023 19:33:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272121#M67241</guid>
      <dc:creator>DanielMiranda2</dc:creator>
      <dc:date>2023-03-27T19:33:46Z</dc:date>
    </item>
    <item>
      <title>Re: Symbolizing Unique values with wildcards</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272130#M67243</link>
      <description>&lt;P&gt;All other values would work if I only had one type of INSP_STATUS, but I have 4 different values that INSP_STATUS could possible be.&lt;/P&gt;&lt;P&gt;So 5 types of subtypes and 4 types of INSP_STATUS.&amp;nbsp; That's a total of 20 different combinations of symbols if I did it all manually, but there has got to be a better way of doing this.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Mar 2023 19:53:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272130#M67243</guid>
      <dc:creator>BrianBulla</dc:creator>
      <dc:date>2023-03-27T19:53:49Z</dc:date>
    </item>
    <item>
      <title>Re: Symbolizing Unique values with wildcards</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272151#M67247</link>
      <description>&lt;P&gt;try creating a style for your attributes, then base your symbology off that style&lt;/P&gt;</description>
      <pubDate>Mon, 27 Mar 2023 20:09:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272151#M67247</guid>
      <dc:creator>SLouq</dc:creator>
      <dc:date>2023-03-27T20:09:57Z</dc:date>
    </item>
    <item>
      <title>Re: Symbolizing Unique values with wildcards</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272249#M67257</link>
      <description>&lt;P&gt;Use Unique Values, set Field 1 as INSP_STATUS, and then create an expression to concatenate INSP_STATUS and Subtype. That will give you symbols for all possible combinations. For the combinations that have an INSP_STATUS, select them in the symbols list then right click any one of them and select Group values.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Mar 2023 22:23:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272249#M67257</guid>
      <dc:creator>LindaWilliams1</dc:creator>
      <dc:date>2023-03-27T22:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: Symbolizing Unique values with wildcards</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272356#M67269</link>
      <description>&lt;P&gt;You can use an Arcade expression as unique value field (click the expression button on the right of the field). Something like this should do what you want:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;// for features without INSP_STATUS, return the subtype
if(IsEmpty($feature.INSP_STATUS)) {
    var subtypes = ["MaintenanceHole", "InspectionMH", "BackFlow", "DiversionMH", "FlapGateMH"]
    var i = $feature.SubtypeCD - 1
    return subtypes[i]
}
// for features with INSP_STATUS, return a default value
return "YES"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2023 09:51:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272356#M67269</guid>
      <dc:creator>JohannesLindner</dc:creator>
      <dc:date>2023-03-28T09:51:17Z</dc:date>
    </item>
    <item>
      <title>Re: Symbolizing Unique values with wildcards</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272402#M67273</link>
      <description>&lt;P&gt;Thanks Johannes.&amp;nbsp; Arcade to the rescue again!&amp;nbsp; I will check this out and see if I can get it to work.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2023 12:46:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272402#M67273</guid>
      <dc:creator>BrianBulla</dc:creator>
      <dc:date>2023-03-28T12:46:46Z</dc:date>
    </item>
    <item>
      <title>Re: Symbolizing Unique values with wildcards</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272420#M67274</link>
      <description>&lt;P&gt;Here is the final product.&amp;nbsp; It's working nicely!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BrianBulla_0-1680009432786.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/66483i0B8234A5092046CE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BrianBulla_0-1680009432786.png" alt="BrianBulla_0-1680009432786.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;// for features without INSP_STATUS, return the subtype
if(IsEmpty($feature.INSP_STATUS)) {
    var subtypes = ["MaintenanceHole", "InspectionMH", "BackFlow", "DiversionMH", "FlapGateMH"]
    var i = $feature.SubtypeCD - 1
    return subtypes[i]
}

// for features with INSP_STATUS = YES
if ($feature.INSP_STATUS == "YES")
{
    return "YES"
};

// for features with INSP_STATUS = WR LOW
if ($feature.INSP_STATUS == "LOW")
{
    return "LOW"
};

// for features with INSP_STATUS = WR HIGH
if ($feature.INSP_STATUS == "HIGH")
{
    return "HIGH"
};

// for features with INSP_STATUS = CR
if ($feature.INSP_STATUS == "CR")
{
    return "CR"
};&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2023 13:17:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272420#M67274</guid>
      <dc:creator>BrianBulla</dc:creator>
      <dc:date>2023-03-28T13:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: Symbolizing Unique values with wildcards</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272601#M67291</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/294341"&gt;@JohannesLindner&lt;/a&gt;&amp;nbsp;.&amp;nbsp; Sorry to bug you yet again, but after setting up this Arcade powered symbology and publishing this feature class as a hosted feature layer in our Enterprise ArcGIS Online account, a lot of the symbols are not actually showing.&amp;nbsp; The ones with an INSP_STATUS do show up, but the ones with no INSP_STATUS are just not visible.&amp;nbsp; They are there, as evidenced by the labelling, but you just can't see them.&lt;/P&gt;&lt;P&gt;Does ArcGIS Online/Portal not support Arcade expressions??&amp;nbsp; Even using the web layer directly in ArcGIS Pro, I see the same results.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BrianBulla_1-1680024443661.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/66542i36B3EAFC90E46850/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BrianBulla_1-1680024443661.png" alt="BrianBulla_1-1680024443661.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2023 17:28:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272601#M67291</guid>
      <dc:creator>BrianBulla</dc:creator>
      <dc:date>2023-03-28T17:28:26Z</dc:date>
    </item>
    <item>
      <title>Re: Symbolizing Unique values with wildcards</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272612#M67292</link>
      <description>&lt;P&gt;Click Edit Layer Style and their should be a botton to toggle on off for Show features out of range or no values. Set it to on.&amp;nbsp;&lt;/P&gt;&lt;P&gt;You may have to experiment with different styles before you see that option&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2023 17:53:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272612#M67292</guid>
      <dc:creator>SLouq</dc:creator>
      <dc:date>2023-03-28T17:53:17Z</dc:date>
    </item>
    <item>
      <title>Re: Symbolizing Unique values with wildcards</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272621#M67294</link>
      <description>&lt;P&gt;That doesn't seem to be an option for me.&amp;nbsp; Maybe because I'm using an Arcade expression for the symbology?&amp;nbsp; And the features are there.&amp;nbsp; You can see the labelling.&amp;nbsp; They just aren't being symbolized.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2023 17:57:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272621#M67294</guid>
      <dc:creator>BrianBulla</dc:creator>
      <dc:date>2023-03-28T17:57:30Z</dc:date>
    </item>
    <item>
      <title>Re: Symbolizing Unique values with wildcards</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272634#M67298</link>
      <description>&lt;P&gt;The one I did I used the Counts and Amounts (color) style but I had created a style in ArcGIS Pro and then uploaded it to ArcGIS Online. Took a little experimenting and a few curse words but I figured it out.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2023 18:06:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272634#M67298</guid>
      <dc:creator>SLouq</dc:creator>
      <dc:date>2023-03-28T18:06:10Z</dc:date>
    </item>
    <item>
      <title>Re: Symbolizing Unique values with wildcards</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272659#M67304</link>
      <description>&lt;P&gt;Hmmm... No idea why the symbology wouldn't translate to AGOL correctly. Try to change it in the MapViewer (just copy your expression) that worked for me.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JohannesLindner_0-1680028420017.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/66551iA7EE86228CE98382/image-size/large?v=v2&amp;amp;px=999" role="button" title="JohannesLindner_0-1680028420017.png" alt="JohannesLindner_0-1680028420017.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JohannesLindner_1-1680028461572.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/66552iDC46BD099B27AB73/image-size/large?v=v2&amp;amp;px=999" role="button" title="JohannesLindner_1-1680028461572.png" alt="JohannesLindner_1-1680028461572.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2023 18:34:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1272659#M67304</guid>
      <dc:creator>JohannesLindner</dc:creator>
      <dc:date>2023-03-28T18:34:38Z</dc:date>
    </item>
    <item>
      <title>Re: Symbolizing Unique values with wildcards</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1273703#M67409</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/294341"&gt;@JohannesLindner&lt;/a&gt;&amp;nbsp;.&amp;nbsp; So I think I see why my symbology in AGOL isn't working, but I can't really explain why.&amp;nbsp; So, it looks like when I share my data as a weblayer out of ArcGIS Pro, the INSP_STATUS field on the data is getting upated.&amp;nbsp; I do have Attribute Rules on the related table that has the inspections information.&amp;nbsp; Do you think for some reason that is getting triggered when I share the data?&amp;nbsp; Otherwise, I don't understand how that INSP_STATUS field is getting populated.&lt;/P&gt;&lt;P&gt;In my Attribute Rule, I have it set to update the INSP_STATUS in the parent records field whenever a new inspection record is created/updated.&amp;nbsp; For some reason, I am seeing all records in the published hosted feature layer with that attribute populated.&lt;BR /&gt;&lt;BR /&gt;Here is ArcGIS Pro:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BrianBulla_0-1680198344083.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/66820i9AB8790C9EED74CD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BrianBulla_0-1680198344083.png" alt="BrianBulla_0-1680198344083.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And then the same feature in AGOL:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BrianBulla_1-1680198524754.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/66821i7C9BC0993E855413/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BrianBulla_1-1680198524754.png" alt="BrianBulla_1-1680198524754.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Mar 2023 17:49:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1273703#M67409</guid>
      <dc:creator>BrianBulla</dc:creator>
      <dc:date>2023-03-30T17:49:17Z</dc:date>
    </item>
    <item>
      <title>Re: Symbolizing Unique values with wildcards</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1273790#M67416</link>
      <description>&lt;P&gt;Ha ha!!&amp;nbsp; Ok&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/294341"&gt;@JohannesLindner&lt;/a&gt;&amp;nbsp;I finally got it working.&amp;nbsp; Apparantly when you set a DEFAULT value on a field when you share that to AGOL, it automatically populates all the &amp;lt;Null&amp;gt; values with that default value....at least that seems to be what is happening....so NOT the Attribute rules.&lt;/P&gt;&lt;P&gt;Anyways, all is good now and the Arcade symbology is working ok.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Mar 2023 19:42:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1273790#M67416</guid>
      <dc:creator>BrianBulla</dc:creator>
      <dc:date>2023-03-30T19:42:09Z</dc:date>
    </item>
    <item>
      <title>Re: Symbolizing Unique values with wildcards</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1273801#M67417</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN&gt;Apparantly when you set a DEFAULT value on a field when you share that to AGOL, it automatically populates all the &amp;lt;Null&amp;gt; values with that default value&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN&gt;Huh, good to know.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Glad you got it working, please mark the correct answer so this question is shown as solved.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Mar 2023 20:04:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/symbolizing-unique-values-with-wildcards/m-p/1273801#M67417</guid>
      <dc:creator>JohannesLindner</dc:creator>
      <dc:date>2023-03-30T20:04:33Z</dc:date>
    </item>
  </channel>
</rss>

