<?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: Create variables from Excel in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/create-variables-from-excel/m-p/37382#M2928</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi David,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There seems to be some line intend issue when i posted the script in the forum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have uploaded the script in this location.&lt;A href="https://community.esri.com/docs/DOC-2201"&gt;Variable_from_excel.py&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Aug 2014 11:46:29 GMT</pubDate>
    <dc:creator>RiyasDeen</dc:creator>
    <dc:date>2014-08-20T11:46:29Z</dc:date>
    <item>
      <title>Create variables from Excel</title>
      <link>https://community.esri.com/t5/python-questions/create-variables-from-excel/m-p/37376#M2922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello. I have an excel table which contains a list of wind turbine IDs and their associated sound power levels at various octave bands.&lt;/P&gt;&lt;P&gt;The table roughly looks like this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(198, 198, 198); width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: left; background-color: #f2f2f2; color: #505050; padding: 6px;" valign="middle"&gt;&lt;STRONG&gt;ID&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: left; background-color: #f2f2f2; color: #505050; padding: 6px;" valign="middle"&gt;&lt;STRONG&gt;63Hz&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: left; background-color: #f2f2f2; color: #505050; padding: 6px;" valign="middle"&gt;&lt;STRONG&gt;125Hz&lt;BR /&gt;&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: left; background-color: #f2f2f2; color: #505050; padding: 6px;" valign="middle"&gt;&lt;STRONG&gt;250&lt;STRONG style="color: #505050;"&gt;Hz&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: left; background-color: #f2f2f2; color: #505050; padding: 6px;" valign="middle"&gt;&lt;STRONG&gt;500&lt;STRONG style="color: #505050;"&gt;Hz&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: left; background-color: #f2f2f2; color: #505050; padding: 6px;" valign="middle"&gt;&lt;STRONG&gt;1000&lt;STRONG style="color: #505050;"&gt;Hz&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: left; background-color: #f2f2f2; color: #505050; padding: 6px;" valign="middle"&gt;&lt;STRONG&gt;2000&lt;STRONG style="color: #505050;"&gt;Hz&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: left; background-color: #f2f2f2; color: #505050; padding: 6px;" valign="middle"&gt;&lt;STRONG&gt;4000&lt;STRONG style="color: #505050;"&gt;Hz&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: left; background-color: #f2f2f2; color: #505050; padding: 6px;" valign="middle"&gt;&lt;STRONG&gt;8000&lt;STRONG style="color: #505050;"&gt;Hz&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 6px;"&gt;T19&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;79.4&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;89.4&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;98.1&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;100.2&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;100.5&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;97.9&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;96.0&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;90.2&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Previous I have manually input the variables for each turbine as an array in the following format&lt;/P&gt;&lt;P&gt;T19 = [79.4, 89.4, 98.1, 100.2, 100.5, 97.9, 96.0, 90.2]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I am looking of a way to automate many lines from an excel table to automatically create a variable like I have done manually. I have successfully been able to print the data in the correct format but obviously this isn't setting it as a variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone have any ideas how I could achieve this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks for your help&lt;/P&gt;&lt;P&gt;David &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Aug 2014 09:12:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-variables-from-excel/m-p/37376#M2922</guid>
      <dc:creator>DavidFotheringham1</dc:creator>
      <dc:date>2014-08-20T09:12:35Z</dc:date>
    </item>
    <item>
      <title>Re: Create variables from Excel</title>
      <link>https://community.esri.com/t5/python-questions/create-variables-from-excel/m-p/37377#M2923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi David,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below code reads through a Excel datasheet and creates a dictionary. You can reference the values for your key column from the dictionary as key. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14085300464889914 jive_text_macro" jivemacro_uid="_14085300464889914"&gt;
&lt;P&gt;import arcpy&lt;/P&gt;
&lt;P&gt;import arcgisscripting&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;gp = arcgisscripting.create()&lt;/P&gt;
&lt;P&gt;def Message(sMsg):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print sMsg&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.AddMessage(sMsg)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;# Define the feature class&amp;nbsp; &lt;/P&gt;
&lt;P&gt;table = "C:\Users\deenr\Desktop\Data.xlsx\Sheet1$"&lt;/P&gt;
&lt;P&gt;keyField = "ID"&lt;/P&gt;
&lt;P&gt;keyIdx = -1&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;fields = arcpy.ListFields(table)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;# Get Key column Id&lt;/P&gt;
&lt;P&gt;fIdx = 0&lt;/P&gt;
&lt;P&gt;for field in fields:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; if field.name == keyField:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; keyIdx = fIdx&lt;/P&gt;
&lt;P&gt;&amp;nbsp; break&lt;/P&gt;
&lt;P&gt;&amp;nbsp; fIdx += 1&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;dictionary = {}&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;with arcpy.da.SearchCursor(table, ("*")) as cursor:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; for row in cursor:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; idx = 0&lt;/P&gt;
&lt;P&gt;&amp;nbsp; for cell in row:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; if idx == fIdx:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; if dictionary.has_key(str(cell)) == False:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; dictionary[str(cell)] = []&lt;/P&gt;
&lt;P&gt;&amp;nbsp; else:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; if dictionary.has_key(str(row[fIdx])) == True:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; dictionary[str(row[fIdx])].append(cell)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; idx += 1&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;# Print whole dictionary&lt;/P&gt;
&lt;P&gt;Message(str(dictionary.items()))&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;for key in dictionary.keys():&lt;/P&gt;
&lt;P&gt;&amp;nbsp; # Print Values&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Message(str(dictionary[key]))&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Aug 2014 10:20:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-variables-from-excel/m-p/37377#M2923</guid>
      <dc:creator>RiyasDeen</dc:creator>
      <dc:date>2014-08-20T10:20:47Z</dc:date>
    </item>
    <item>
      <title>Re: Create variables from Excel</title>
      <link>https://community.esri.com/t5/python-questions/create-variables-from-excel/m-p/37378#M2924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your quick answer Riyas.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I had to tweak a few of the lines for the for loops (lines 23-26 and 33-41), hopefully I did this correctly. I do get an output from the code. One row from excel comes out as&lt;/P&gt;&lt;P&gt;('T2', []), ('97.9', []), ('97.1', []), ('95.8', []), ('95.9', []), ('95.1', []), ('74.9', [])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this what you would expect?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Aug 2014 10:42:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-variables-from-excel/m-p/37378#M2924</guid>
      <dc:creator>DavidFotheringham1</dc:creator>
      <dc:date>2014-08-20T10:42:18Z</dc:date>
    </item>
    <item>
      <title>Re: Create variables from Excel</title>
      <link>https://community.esri.com/t5/python-questions/create-variables-from-excel/m-p/37379#M2925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi David,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure what change you made to the code. Below is the data used and output for the code I posted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Line 46 is printing the whole dictionary out, including key and value.&lt;/P&gt;&lt;P&gt;Line 51 is printing the values for each key from the dictionary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Untitled.png" class="jive-image image-1" src="https://community.esri.com/legacyfs/online/3640_Untitled.png" style="width: 620px; height: 496px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Aug 2014 10:52:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-variables-from-excel/m-p/37379#M2925</guid>
      <dc:creator>RiyasDeen</dc:creator>
      <dc:date>2014-08-20T10:52:24Z</dc:date>
    </item>
    <item>
      <title>Re: Create variables from Excel</title>
      <link>https://community.esri.com/t5/python-questions/create-variables-from-excel/m-p/37380#M2926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14085324452651524 jive_text_macro" jivemacro_uid="_14085324452651524"&gt;
&lt;P&gt;import arcpy&lt;/P&gt;
&lt;P&gt;import arcgisscripting&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;gp = arcgisscripting.create()&lt;/P&gt;
&lt;P&gt;def Message(sMsg):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print sMsg&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.AddMessage(sMsg)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;# Define the feature class&amp;nbsp; &lt;/P&gt;
&lt;P&gt;table = r"Z:\test1.xls\Sheet1$"&lt;/P&gt;
&lt;P&gt;keyField = "ID"&lt;/P&gt;
&lt;P&gt;keyIdx = -1&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;fields = arcpy.ListFields(table)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;# Get Key column Id&lt;/P&gt;
&lt;P&gt;fIdx = 0&lt;/P&gt;
&lt;P&gt;for field in fields:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if field.name == keyField:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; keyIdx = fIdx&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; break&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; fIdx += 1&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;dictionary = {}&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;with arcpy.da.SearchCursor(table, ("*")) as cursor:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; for row in cursor:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; idx = 0&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for cell in row:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if idx == fIdx:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if dictionary.has_key(str(cell)) == False:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dictionary[str(cell)] = []&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if dictionary.has_key(str(row[fIdx])) == True:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dictionary[str(row[fIdx])].append(cell)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; idx += 1&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;# Print whole dictionary&lt;/P&gt;
&lt;P&gt;Message(str(dictionary.items()))&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;for key in dictionary.keys():&lt;/P&gt;
&lt;P&gt;&amp;nbsp; # Print Values&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Message(str(dictionary[key]))&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is the updated code (not sure why the extra empty lines have added, that isn't shown on my screen!), again apologies if I've mess with how it works because we seem to have differing outputs. If it helps at all I'm using Python in PythonWin rather than directly through ArcGIS. Thanks for your help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Aug 2014 11:02:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-variables-from-excel/m-p/37380#M2926</guid>
      <dc:creator>DavidFotheringham1</dc:creator>
      <dc:date>2014-08-20T11:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: Create variables from Excel</title>
      <link>https://community.esri.com/t5/python-questions/create-variables-from-excel/m-p/37381#M2927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear David,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not sure for what purpose you would like to create the variable? But if you would like to create this kind of array you can use the Excel formula "concatenate" to create the array from your column values.&lt;/P&gt;&lt;P&gt;If you then like to transfer the Excel data to ArcGIS you can use the &lt;A href="http://www.gis-connector.de/en/product/"&gt;GISconnector for Excel&lt;/A&gt;. If you afterwards change your data again, in ArcGIS or in Excel, you can synchronize your data again using the GISconnector.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...everythin without Python&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Matthias&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Aug 2014 11:46:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-variables-from-excel/m-p/37381#M2927</guid>
      <dc:creator>MatthiasAbele</dc:creator>
      <dc:date>2014-08-20T11:46:19Z</dc:date>
    </item>
    <item>
      <title>Re: Create variables from Excel</title>
      <link>https://community.esri.com/t5/python-questions/create-variables-from-excel/m-p/37382#M2928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi David,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There seems to be some line intend issue when i posted the script in the forum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have uploaded the script in this location.&lt;A href="https://community.esri.com/docs/DOC-2201"&gt;Variable_from_excel.py&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Aug 2014 11:46:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-variables-from-excel/m-p/37382#M2928</guid>
      <dc:creator>RiyasDeen</dc:creator>
      <dc:date>2014-08-20T11:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: Create variables from Excel</title>
      <link>https://community.esri.com/t5/python-questions/create-variables-from-excel/m-p/37383#M2929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perfect! Thanks so much Riyas!&lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Aug 2014 11:54:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-variables-from-excel/m-p/37383#M2929</guid>
      <dc:creator>DavidFotheringham1</dc:creator>
      <dc:date>2014-08-20T11:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: Create variables from Excel</title>
      <link>https://community.esri.com/t5/python-questions/create-variables-from-excel/m-p/37384#M2930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your answer &lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Matthias. That would appear to work well but we are hoping to keep everything in one self-contain python script. I'll keep it in mind for other work though&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Aug 2014 11:55:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-variables-from-excel/m-p/37384#M2930</guid>
      <dc:creator>DavidFotheringham1</dc:creator>
      <dc:date>2014-08-20T11:55:11Z</dc:date>
    </item>
  </channel>
</rss>

