<?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 Select by attributes based on multivalue parameter in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/select-by-attributes-based-on-multivalue-parameter/m-p/565309#M44253</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;New to Python.&amp;nbsp; I'm attempting to create a python script that will allow a user to select a parcel (a parameter input by user), select all other parcels within a specified distance of the selected parcel, and then export the selection.&amp;nbsp; I've gotten the code to work when the user inputs one parcel id.&amp;nbsp; However, there are times when the user will need to select multiple parcels.&amp;nbsp; I've changed the parameter to multivalue so that multiple inputs are accepted but the code needs some help to be able to handle the multiple inputs.&amp;nbsp; Here's what I have:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# Import system modules&lt;BR /&gt;import arcpy&lt;BR /&gt;import arcpy.mapping&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;mxd = arcpy.mapping.MapDocument ('CURRENT')&lt;BR /&gt;df = arcpy.mapping.ListDataFrames(mxd,"Layers")[0]&lt;BR /&gt;lyr = arcpy.mapping.ListLayers(mxd, "Parcels")[0]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;taxid = arcpy.GetParameterAsText(0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# Overwrite pre-existing files&lt;BR /&gt;arcpy.env.overwriteOutput = True&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# Selects the parcel of interest &lt;BR /&gt;arcpy.SelectLayerByAttribute_management("Parcels", "NEW_SELECTION", '"TAX_IDTXT" = ' + "'" + taxid + "'")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Obviously this is only a small portion of the code but this is the part that I'm struggling with.&amp;nbsp; How do I get the code to accept multiple inputs from the user?&amp;nbsp; From other forum posts people have suggested a whereClause.&amp;nbsp; I've experimented with some code below without success.&amp;nbsp; I think an issue is with the TAX_IDTXT field.&amp;nbsp; I'm not sure how to tell it to search the TAX_IDTXT field in the Parcels layer.&amp;nbsp; Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#Build the where clause &lt;BR /&gt;whereClause = "{0} in ('TAX_IDTXT')".format("TAX_IDTXT", "','".join(taxid.split(';'))) &lt;BR /&gt; &lt;BR /&gt;#Select(input, output, whereClause) &lt;BR /&gt; &lt;BR /&gt;if int(arcpy.GetCount_management(lyr).getOutput(0)) &amp;gt; 0: &lt;BR /&gt; &lt;BR /&gt; arcpy.SelectLayerByAttribute_management(lyr, "NEW_SELECTION", whereClause)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Nov 2017 22:56:11 GMT</pubDate>
    <dc:creator>LyleShakespear</dc:creator>
    <dc:date>2017-11-27T22:56:11Z</dc:date>
    <item>
      <title>Select by attributes based on multivalue parameter</title>
      <link>https://community.esri.com/t5/python-questions/select-by-attributes-based-on-multivalue-parameter/m-p/565309#M44253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;New to Python.&amp;nbsp; I'm attempting to create a python script that will allow a user to select a parcel (a parameter input by user), select all other parcels within a specified distance of the selected parcel, and then export the selection.&amp;nbsp; I've gotten the code to work when the user inputs one parcel id.&amp;nbsp; However, there are times when the user will need to select multiple parcels.&amp;nbsp; I've changed the parameter to multivalue so that multiple inputs are accepted but the code needs some help to be able to handle the multiple inputs.&amp;nbsp; Here's what I have:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# Import system modules&lt;BR /&gt;import arcpy&lt;BR /&gt;import arcpy.mapping&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;mxd = arcpy.mapping.MapDocument ('CURRENT')&lt;BR /&gt;df = arcpy.mapping.ListDataFrames(mxd,"Layers")[0]&lt;BR /&gt;lyr = arcpy.mapping.ListLayers(mxd, "Parcels")[0]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;taxid = arcpy.GetParameterAsText(0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# Overwrite pre-existing files&lt;BR /&gt;arcpy.env.overwriteOutput = True&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# Selects the parcel of interest &lt;BR /&gt;arcpy.SelectLayerByAttribute_management("Parcels", "NEW_SELECTION", '"TAX_IDTXT" = ' + "'" + taxid + "'")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Obviously this is only a small portion of the code but this is the part that I'm struggling with.&amp;nbsp; How do I get the code to accept multiple inputs from the user?&amp;nbsp; From other forum posts people have suggested a whereClause.&amp;nbsp; I've experimented with some code below without success.&amp;nbsp; I think an issue is with the TAX_IDTXT field.&amp;nbsp; I'm not sure how to tell it to search the TAX_IDTXT field in the Parcels layer.&amp;nbsp; Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#Build the where clause &lt;BR /&gt;whereClause = "{0} in ('TAX_IDTXT')".format("TAX_IDTXT", "','".join(taxid.split(';'))) &lt;BR /&gt; &lt;BR /&gt;#Select(input, output, whereClause) &lt;BR /&gt; &lt;BR /&gt;if int(arcpy.GetCount_management(lyr).getOutput(0)) &amp;gt; 0: &lt;BR /&gt; &lt;BR /&gt; arcpy.SelectLayerByAttribute_management(lyr, "NEW_SELECTION", whereClause)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2017 22:56:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/select-by-attributes-based-on-multivalue-parameter/m-p/565309#M44253</guid>
      <dc:creator>LyleShakespear</dc:creator>
      <dc:date>2017-11-27T22:56:11Z</dc:date>
    </item>
    <item>
      <title>Re: Select by attributes based on multivalue parameter</title>
      <link>https://community.esri.com/t5/python-questions/select-by-attributes-based-on-multivalue-parameter/m-p/565310#M44254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;run the tool manually as you want it, then go to Geoprocessing Results, and export what you see as a python script/snippet.&amp;nbsp; You will get the required syntax to complete the task script-wise.&amp;nbsp; Many of the tools return a semi-colon delimited string which may need to be converted to a list by splitting on the semi-colon.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;in_stuff &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"a;b;c;d"&lt;/SPAN&gt;

out_stuff &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; in_stuff&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;split&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;";"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; stuff &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; out_stuff&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"do stuff with {}"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;stuff&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
do stuff &lt;SPAN class="keyword token"&gt;with&lt;/SPAN&gt; a
do stuff &lt;SPAN class="keyword token"&gt;with&lt;/SPAN&gt; b
do stuff &lt;SPAN class="keyword token"&gt;with&lt;/SPAN&gt; c
do stuff &lt;SPAN class="keyword token"&gt;with&lt;/SPAN&gt; d&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;/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;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 00:21:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/select-by-attributes-based-on-multivalue-parameter/m-p/565310#M44254</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2021-12-12T00:21:46Z</dc:date>
    </item>
    <item>
      <title>Re: Select by attributes based on multivalue parameter</title>
      <link>https://community.esri.com/t5/python-questions/select-by-attributes-based-on-multivalue-parameter/m-p/565311#M44255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you say run the tool manually are you talking about the python window in ArcMap.&amp;nbsp; When I try that it tells me there is&amp;nbsp; a parsing error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2017 23:53:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/select-by-attributes-based-on-multivalue-parameter/m-p/565311#M44255</guid>
      <dc:creator>LyleShakespear</dc:creator>
      <dc:date>2017-11-27T23:53:59Z</dc:date>
    </item>
    <item>
      <title>Re: Select by attributes based on multivalue parameter</title>
      <link>https://community.esri.com/t5/python-questions/select-by-attributes-based-on-multivalue-parameter/m-p/565312#M44256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just run Select by attributes in ArcMap first to get the syntax which is appropriate when that tools's process is converted to a python script.&lt;/P&gt;&lt;P&gt;When you run it with one input, it will probably look like what you have&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #3d3d3d; font-family: arial,helvetica,'helvetica neue',verdana,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; word-wrap: break-word;"&gt;arcpy.SelectLayerByAttribute_management("Parcels", "NEW_SELECTION", '"TAX_IDTXT" = ' + "'" + taxid + "'")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #3d3d3d; font-family: arial,helvetica,'helvetica neue',verdana,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; word-wrap: break-word;"&gt;But you don't know what it will look like when you have multiple things to select.&amp;nbsp; So, by doing it manually and getting the script syntax for the last parameter of the tool, you will have saved yourself a lot of time trying to figure it out on your own.&amp;nbsp; Doesn't hurt to try.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2017 23:59:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/select-by-attributes-based-on-multivalue-parameter/m-p/565312#M44256</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2017-11-27T23:59:01Z</dc:date>
    </item>
    <item>
      <title>Re: Select by attributes based on multivalue parameter</title>
      <link>https://community.esri.com/t5/python-questions/select-by-attributes-based-on-multivalue-parameter/m-p/565313#M44257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A couple of comments here:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;The where clause does not seem to be constructed correctly look below what you could do:&lt;/LI&gt;&lt;/UL&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;taxid &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'a123'&lt;/SPAN&gt;
taxids &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; taxid&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;split&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;';'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
where &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'"TAX_IDTXT" IN '&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"('{0}')"&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;"','"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;join&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;taxids&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; where

taxid &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'a123;b456;c789'&lt;/SPAN&gt;
taxids &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; taxid&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;split&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;';'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
where &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'"TAX_IDTXT" IN '&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"('{0}')"&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;"','"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;join&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;taxids&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; where

taxid &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;''&lt;/SPAN&gt;
taxids &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; taxid&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;split&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;';'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
where &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'"TAX_IDTXT" IN '&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"('{0}')"&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;"','"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;join&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;taxids&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; where&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;/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;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;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will yield:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;"TAX_IDTXT" IN ('a123')
"TAX_IDTXT" IN ('a123','b456','c789')
"TAX_IDTXT" IN ('')&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;&lt;/P&gt;&lt;P&gt;The other point is that you should not check with a GetCount, since if there is no selection it will return the count of all the features. I would also expect to see a&amp;nbsp;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/select-layer-by-location.htm" title="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/select-layer-by-location.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;Select Layer By Location—Help | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;with the appropriate search distance to select the features within a certain distance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 00:21:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/select-by-attributes-based-on-multivalue-parameter/m-p/565313#M44257</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2021-12-12T00:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: Select by attributes based on multivalue parameter</title>
      <link>https://community.esri.com/t5/python-questions/select-by-attributes-based-on-multivalue-parameter/m-p/565314#M44258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Xander!&amp;nbsp; It was the where clause as you mentioned.&amp;nbsp; I think I was trying to do it backwards, as well as an issue with the last part of the where clause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will be very helpful as I continue to learn python.&amp;nbsp; Thanks again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Nov 2017 18:20:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/select-by-attributes-based-on-multivalue-parameter/m-p/565314#M44258</guid>
      <dc:creator>LyleShakespear</dc:creator>
      <dc:date>2017-11-29T18:20:55Z</dc:date>
    </item>
    <item>
      <title>Re: Select by attributes based on multivalue parameter</title>
      <link>https://community.esri.com/t5/python-questions/select-by-attributes-based-on-multivalue-parameter/m-p/565315#M44259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glad it worked for you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Nov 2017 18:59:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/select-by-attributes-based-on-multivalue-parameter/m-p/565315#M44259</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2017-11-29T18:59:27Z</dc:date>
    </item>
  </channel>
</rss>

