<?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 Empty values in drop down list for a geoprocessing service in Developers Questions</title>
    <link>https://community.esri.com/t5/developers-questions/empty-values-in-drop-down-list-for-a-geoprocessing/m-p/739345#M5044</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I cannot find a solution to this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a huge feature class with millions of records and I need to be able to filter&amp;nbsp;it using a number of fields from its attribute table. To create a list of options for the input parameters to the filter I have created a number of tables containing all the available options from the main feature class for example for the field called CityName in the feature class I have a different table showing all the unique values for that field, for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE class="j-table jiveBorder" style="border: 1px solid #c6c6c6;" width="100%"&gt;&lt;THEAD style="border: inherit solid inherit;"&gt;&lt;TR style="background-color: #efefef; height: 25px;"&gt;&lt;TH style="height: 25px;"&gt;OID&lt;/TH&gt;&lt;TH style="height: 25px;"&gt;CityName&lt;/TH&gt;&lt;/TR&gt;&lt;/THEAD&gt;&lt;TBODY style="border: inherit solid inherit;"&gt;&lt;TR style="height: 25px;"&gt;&lt;TD style="height: 25px;"&gt;1&lt;/TD&gt;&lt;TD style="height: 25px;"&gt;New York&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 22px;"&gt;&lt;TD style="height: 22px;"&gt;2&lt;/TD&gt;&lt;TD style="height: 22px;"&gt;&lt;P&gt;Paris&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 25px;"&gt;&lt;TD style="height: 25px;"&gt;3&lt;/TD&gt;&lt;TD style="height: 25px;"&gt;Rome&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 25px;"&gt;&lt;TD style="height: 25px;"&gt;4&lt;/TD&gt;&lt;TD style="height: 25px;"&gt;etc..&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created the python script and I am using the validation code to create the drop down lists, something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;def initializeParameters(self):&lt;BR /&gt;"""Refine the properties of a tool's parameters. This method is&lt;BR /&gt;called when the tool is opened."""&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;self.params[0].value = None&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;return&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;def updateParameters(self):&lt;BR /&gt;"""Modify the values and properties of parameters before internal&lt;BR /&gt;validation is performed. This method is called whenever a parameter&lt;BR /&gt;has been changed."""&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;Cities = "Database Connections\\Prod (LHRDB8511) GISadmin.sde\\MyDB.dbo.Portfolio_Cities"&lt;BR /&gt;rows1 = arcpy.SearchCursor(Cities)&lt;BR /&gt;self.params[0].filter.list = sorted(list(set(row.getValue('CityName') for row in rows1)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The input parameter is however optional, meaning that the user can leave it blank and here lies the problem because despite the tool working very well in ArcGIS Desktop and Pro, once the tool is published as a geoprocessing service you don't have the option to leave it blank anymore but you are forced to select one of the values, like one of the cities in the example, or at least this is what happens in the Geoprocessing widget for WAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried to add an empty value in the tables used for the filtering, like:&lt;/P&gt;&lt;TABLE class="j-table jiveBorder" style="border: 1px solid #c6c6c6;" width="100%"&gt;&lt;THEAD style="border: inherit solid inherit;"&gt;&lt;TR style="background-color: #efefef;"&gt;&lt;TH style="border: inherit solid inherit; font-weight: bold; font-size: inherit; padding: 5px;"&gt;ID&lt;/TH&gt;&lt;TH style="border: inherit solid inherit; font-weight: bold; font-size: inherit; padding: 5px;"&gt;CityName&lt;/TH&gt;&lt;/TR&gt;&lt;/THEAD&gt;&lt;TBODY style="border: inherit solid inherit;"&gt;&lt;TR style="border: inherit solid inherit;"&gt;&lt;TD style="border: inherit solid inherit; font-size: inherit; padding: 5px;"&gt;1&lt;/TD&gt;&lt;TD style="border: inherit solid inherit; font-size: inherit; padding: 5px;"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: inherit solid inherit;"&gt;&lt;TD style="border: inherit solid inherit; font-size: inherit; padding: 5px;"&gt;2&lt;/TD&gt;&lt;TD style="border: inherit solid inherit; font-size: inherit; padding: 5px;"&gt;New York&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: inherit solid inherit;"&gt;&lt;TD style="border: inherit solid inherit; font-size: inherit; padding: 5px;"&gt;3&lt;/TD&gt;&lt;TD style="border: inherit solid inherit; font-size: inherit; padding: 5px;"&gt;&lt;P&gt;Paris&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: inherit solid inherit;"&gt;&lt;TD style="border: inherit solid inherit; font-size: inherit; padding: 5px;"&gt;4&lt;/TD&gt;&lt;TD style="border: inherit solid inherit; font-size: inherit; padding: 5px;"&gt;Rome&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: inherit solid inherit;"&gt;&lt;TD style="border: inherit solid inherit; font-size: inherit; padding: 5px;"&gt;5&lt;/TD&gt;&lt;TD style="border: inherit solid inherit; font-size: inherit; padding: 5px;"&gt;etc..&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this will generate an error in the tool as it seems incapable of dealing with empty / null values.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;ERROR&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;updateParameters Execution Error: Runtime error Traceback (most recent call last): File "E:\GIS Data\TOOLS\Custom Filter\CustomFilterPortfolio.tbx#DropDown22.UpdateParameters.py", line 4, in File "E:\GIS Data\TOOLS\Custom Filter\CustomFilterPortfolio.tbx#DropDown22.UpdateParameters.py", line 34, in updateParameters File "c:\program files (x86)\arcgis\desktop10.5\arcpy\arcpy\arcobjects\_base.py", line 89, in _set return setattr(self._arc_object, attr_name, cval(val)) ValueError: FilterObject: illegal list value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My final aim is to deploy the geoprocessing service via Web AppBuilder. I have tried the Filter widget already but it's breaking, just too many values to retrieve dynamically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a solution to this problem? Is there another way to deal with null values in the validations script?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Giacomo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Sep 2018 15:50:21 GMT</pubDate>
    <dc:creator>GiacomoFavaron</dc:creator>
    <dc:date>2018-09-07T15:50:21Z</dc:date>
    <item>
      <title>Empty values in drop down list for a geoprocessing service</title>
      <link>https://community.esri.com/t5/developers-questions/empty-values-in-drop-down-list-for-a-geoprocessing/m-p/739345#M5044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I cannot find a solution to this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a huge feature class with millions of records and I need to be able to filter&amp;nbsp;it using a number of fields from its attribute table. To create a list of options for the input parameters to the filter I have created a number of tables containing all the available options from the main feature class for example for the field called CityName in the feature class I have a different table showing all the unique values for that field, for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE class="j-table jiveBorder" style="border: 1px solid #c6c6c6;" width="100%"&gt;&lt;THEAD style="border: inherit solid inherit;"&gt;&lt;TR style="background-color: #efefef; height: 25px;"&gt;&lt;TH style="height: 25px;"&gt;OID&lt;/TH&gt;&lt;TH style="height: 25px;"&gt;CityName&lt;/TH&gt;&lt;/TR&gt;&lt;/THEAD&gt;&lt;TBODY style="border: inherit solid inherit;"&gt;&lt;TR style="height: 25px;"&gt;&lt;TD style="height: 25px;"&gt;1&lt;/TD&gt;&lt;TD style="height: 25px;"&gt;New York&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 22px;"&gt;&lt;TD style="height: 22px;"&gt;2&lt;/TD&gt;&lt;TD style="height: 22px;"&gt;&lt;P&gt;Paris&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 25px;"&gt;&lt;TD style="height: 25px;"&gt;3&lt;/TD&gt;&lt;TD style="height: 25px;"&gt;Rome&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 25px;"&gt;&lt;TD style="height: 25px;"&gt;4&lt;/TD&gt;&lt;TD style="height: 25px;"&gt;etc..&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created the python script and I am using the validation code to create the drop down lists, something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;def initializeParameters(self):&lt;BR /&gt;"""Refine the properties of a tool's parameters. This method is&lt;BR /&gt;called when the tool is opened."""&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;self.params[0].value = None&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;return&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;def updateParameters(self):&lt;BR /&gt;"""Modify the values and properties of parameters before internal&lt;BR /&gt;validation is performed. This method is called whenever a parameter&lt;BR /&gt;has been changed."""&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;Cities = "Database Connections\\Prod (LHRDB8511) GISadmin.sde\\MyDB.dbo.Portfolio_Cities"&lt;BR /&gt;rows1 = arcpy.SearchCursor(Cities)&lt;BR /&gt;self.params[0].filter.list = sorted(list(set(row.getValue('CityName') for row in rows1)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The input parameter is however optional, meaning that the user can leave it blank and here lies the problem because despite the tool working very well in ArcGIS Desktop and Pro, once the tool is published as a geoprocessing service you don't have the option to leave it blank anymore but you are forced to select one of the values, like one of the cities in the example, or at least this is what happens in the Geoprocessing widget for WAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried to add an empty value in the tables used for the filtering, like:&lt;/P&gt;&lt;TABLE class="j-table jiveBorder" style="border: 1px solid #c6c6c6;" width="100%"&gt;&lt;THEAD style="border: inherit solid inherit;"&gt;&lt;TR style="background-color: #efefef;"&gt;&lt;TH style="border: inherit solid inherit; font-weight: bold; font-size: inherit; padding: 5px;"&gt;ID&lt;/TH&gt;&lt;TH style="border: inherit solid inherit; font-weight: bold; font-size: inherit; padding: 5px;"&gt;CityName&lt;/TH&gt;&lt;/TR&gt;&lt;/THEAD&gt;&lt;TBODY style="border: inherit solid inherit;"&gt;&lt;TR style="border: inherit solid inherit;"&gt;&lt;TD style="border: inherit solid inherit; font-size: inherit; padding: 5px;"&gt;1&lt;/TD&gt;&lt;TD style="border: inherit solid inherit; font-size: inherit; padding: 5px;"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: inherit solid inherit;"&gt;&lt;TD style="border: inherit solid inherit; font-size: inherit; padding: 5px;"&gt;2&lt;/TD&gt;&lt;TD style="border: inherit solid inherit; font-size: inherit; padding: 5px;"&gt;New York&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: inherit solid inherit;"&gt;&lt;TD style="border: inherit solid inherit; font-size: inherit; padding: 5px;"&gt;3&lt;/TD&gt;&lt;TD style="border: inherit solid inherit; font-size: inherit; padding: 5px;"&gt;&lt;P&gt;Paris&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: inherit solid inherit;"&gt;&lt;TD style="border: inherit solid inherit; font-size: inherit; padding: 5px;"&gt;4&lt;/TD&gt;&lt;TD style="border: inherit solid inherit; font-size: inherit; padding: 5px;"&gt;Rome&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: inherit solid inherit;"&gt;&lt;TD style="border: inherit solid inherit; font-size: inherit; padding: 5px;"&gt;5&lt;/TD&gt;&lt;TD style="border: inherit solid inherit; font-size: inherit; padding: 5px;"&gt;etc..&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this will generate an error in the tool as it seems incapable of dealing with empty / null values.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;ERROR&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;updateParameters Execution Error: Runtime error Traceback (most recent call last): File "E:\GIS Data\TOOLS\Custom Filter\CustomFilterPortfolio.tbx#DropDown22.UpdateParameters.py", line 4, in File "E:\GIS Data\TOOLS\Custom Filter\CustomFilterPortfolio.tbx#DropDown22.UpdateParameters.py", line 34, in updateParameters File "c:\program files (x86)\arcgis\desktop10.5\arcpy\arcpy\arcobjects\_base.py", line 89, in _set return setattr(self._arc_object, attr_name, cval(val)) ValueError: FilterObject: illegal list value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My final aim is to deploy the geoprocessing service via Web AppBuilder. I have tried the Filter widget already but it's breaking, just too many values to retrieve dynamically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a solution to this problem? Is there another way to deal with null values in the validations script?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Giacomo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2018 15:50:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/empty-values-in-drop-down-list-for-a-geoprocessing/m-p/739345#M5044</guid>
      <dc:creator>GiacomoFavaron</dc:creator>
      <dc:date>2018-09-07T15:50:21Z</dc:date>
    </item>
    <item>
      <title>Re: Empty values in drop down list for a geoprocessing service</title>
      <link>https://community.esri.com/t5/developers-questions/empty-values-in-drop-down-list-for-a-geoprocessing/m-p/739346#M5045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Not sure I've understand you correctly, if you are trying to filter out null values, you can do that with sevral ways:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. inside the &lt;A href="http://pro.arcgis.com/en/pro-app/arcpy/data-access/searchcursor-class.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;SearchCursor &lt;/A&gt;itself, with a &lt;A href="http://pro.arcgis.com/en/pro-app/help/mapping/navigation/sql-reference-for-elements-used-in-query-expressions.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;where_clause sql expression&lt;/A&gt;:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;wc &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'{} IS NOT NULL'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'CityName'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;‍
rows1 &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;SearchCursor&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;Cities&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'CityName'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; where_clause&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;wc&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;‍‍‍‍
&lt;SPAN class="comment token"&gt;# The Rest of your code&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Alternatively, you could filter the null values while iterating:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;with&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;da&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;SearchCursor&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;Cities&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'CityName'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; cursor&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; row &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; cursor&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; row&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;is&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;not&lt;/SPAN&gt; None&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="comment token"&gt;# The Rest of your code&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Hope it helps,&lt;/P&gt;&lt;P&gt;Yoav.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 07:28:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/empty-values-in-drop-down-list-for-a-geoprocessing/m-p/739346#M5045</guid>
      <dc:creator>YoavAbadi</dc:creator>
      <dc:date>2021-12-12T07:28:25Z</dc:date>
    </item>
    <item>
      <title>Re: Empty values in drop down list for a geoprocessing service</title>
      <link>https://community.esri.com/t5/developers-questions/empty-values-in-drop-down-list-for-a-geoprocessing/m-p/739347#M5046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Yoav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I am trying to do is the very opposite. I want to have a null value in the dropdown list&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Sep 2018 10:19:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/empty-values-in-drop-down-list-for-a-geoprocessing/m-p/739347#M5046</guid>
      <dc:creator>GiacomoFavaron</dc:creator>
      <dc:date>2018-09-09T10:19:52Z</dc:date>
    </item>
  </channel>
</rss>

