<?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: Problem with &amp;quot;Join Field&amp;quot; tool in Modelbuilder (iterators &amp; submodels) in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53380#M1841</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kon, you won't find the field you're looking for in the drop down of the dialog box, because you're using an inline variable, the model doesn't know in advance the exact feature class it is processing. You can just type the name of the field into the dialog.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 May 2015 14:19:55 GMT</pubDate>
    <dc:creator>SepheFox</dc:creator>
    <dc:date>2015-05-21T14:19:55Z</dc:date>
    <item>
      <title>Problem with "Join Field" tool in Modelbuilder (iterators &amp; submodels)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53373#M1834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, in my problem i have used "sample tool" for a group of points, with the help of an iterator at modelbuilder and with the use of an inline variable. All i want to do is to join my tables with my points but i don't have a common column. So i created a tool to add a column to both of my groups (tables and point f.classes)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So what i did was that. I created two submodels which contain an iterator for tables (the first one) and (the second) an iterator for point fclasses and a connection to my tool which adds a common column to both of them wih the same values 0,1,2,3,4... so as to join them later, and i used an inline variable again for these submodels. My problem is that when i create a new model with these two submodels inside, although i can put their outputs in the boxes "Input table" &amp;amp; "Join Table" , there isn't any column to choose to join them at "Input Join Field"&amp;nbsp; &amp;amp; "Output Join Field".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please any help would be much appreciated. Thank you very much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2015 13:01:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53373#M1834</guid>
      <dc:creator>KONPETROV</dc:creator>
      <dc:date>2015-05-21T13:01:06Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Join Field" tool in Modelbuilder (iterators &amp; submodels)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53374#M1835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would it be possible for you to post a screenshot of your model and the parameters you're using?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2015 13:13:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53374#M1835</guid>
      <dc:creator>ToddBlanchette</dc:creator>
      <dc:date>2015-05-21T13:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Join Field" tool in Modelbuilder (iterators &amp; submodels)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53375#M1836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;# Import system modules
import arcpy
import os
from arcpy import env
arcpy.overwriteoutput = True


# Set environment settings
inWorkspace = arcpy.GetParameterAsText(0)
inFC = arcpy.GetParameterAsText(1)
outFC = arcpy.GetParameterAsText(2)
data_type = ""


fieldname = "FID_1"
expression = 'getCalc()'
codeblock = """id = -1
def getCalc():
&amp;nbsp;&amp;nbsp;&amp;nbsp; global id
&amp;nbsp;&amp;nbsp;&amp;nbsp; id += 1
&amp;nbsp;&amp;nbsp;&amp;nbsp; return id"""
expression = 'getCalc()'
# Execute CalculateField
arcpy.CalculateField_management(inFC, fieldname, expression, "PYTHON_9.3", codeblock)


arcpy.Copy_management(inFC, outFC, data_type)&lt;/PRE&gt;&lt;P&gt;This is the code of the tool i created.&amp;nbsp; Below are the two submodels (at left ) i created and at the right the model i am trying to make. Thank you&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;&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;&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;&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;&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;&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;&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;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;IMG alt="screenshot.jpg" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/102051_screenshot.jpg" style="width: 620px; height: 349px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 22:03:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53375#M1836</guid>
      <dc:creator>KONPETROV</dc:creator>
      <dc:date>2021-12-10T22:03:11Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Join Field" tool in Modelbuilder (iterators &amp; submodels)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53376#M1837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. Is the field 'FID_1' created somewhere else, or already exist?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. If it does exist, what gets populated when you run the model?&amp;nbsp; If you iterate the same tool over and over, your 'FID_1' will always be equal to 0, because that's what you're passing as an expression every time you run it.&amp;nbsp; The id variable you have doesn't keep counting up every time the model iterates through the tool, it gets reset back to -1 when it's first run.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You're better off iterating through the feature classes and tables using a search cursor within the script itself, and then upping the value in a FOR loop for every feature.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2015 13:53:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53376#M1837</guid>
      <dc:creator>ToddBlanchette</dc:creator>
      <dc:date>2015-05-21T13:53:28Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Join Field" tool in Modelbuilder (iterators &amp; submodels)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53377#M1838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What exactly are you trying to join here anyways?&amp;nbsp; It seems like you're just trying to add incremental values to a feature class and a table.&amp;nbsp; Doesn't your table already have some form of meaningful information that you can use to join to the feature class instead of using a random number?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2015 13:58:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53377#M1838</guid>
      <dc:creator>ToddBlanchette</dc:creator>
      <dc:date>2015-05-21T13:58:11Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Join Field" tool in Modelbuilder (iterators &amp; submodels)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53378#M1839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what i am doing with my code is that i create a column FID and it gets the values 0,1,2,3,... for all the rows. I don't have any problem with that. It is being done correctly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2015 14:14:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53378#M1839</guid>
      <dc:creator>KONPETROV</dc:creator>
      <dc:date>2015-05-21T14:14:57Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Join Field" tool in Modelbuilder (iterators &amp; submodels)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53379#M1840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately no, that is why i created these columns. My problem is when i am trying to get the group of tables and points from my submodels (outputs) in my model where join tool is. You can see the blank box. There it should be appearred all my fields but... Any suggestion?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2015 14:17:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53379#M1840</guid>
      <dc:creator>KONPETROV</dc:creator>
      <dc:date>2015-05-21T14:17:17Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Join Field" tool in Modelbuilder (iterators &amp; submodels)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53380#M1841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kon, you won't find the field you're looking for in the drop down of the dialog box, because you're using an inline variable, the model doesn't know in advance the exact feature class it is processing. You can just type the name of the field into the dialog.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2015 14:19:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53380#M1841</guid>
      <dc:creator>SepheFox</dc:creator>
      <dc:date>2015-05-21T14:19:55Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Join Field" tool in Modelbuilder (iterators &amp; submodels)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53381#M1842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So if I read you correctly, you have made sure that you have:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; A feature class that has a field called FID_1 that has unique numbers from 0 -&amp;gt; whatever.&lt;/P&gt;&lt;P&gt;2.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; A table that has a field called FID_2 that has unique numbers from 0 -&amp;gt; whatever.&lt;/P&gt;&lt;P&gt;and they're not showing up as options on the Join Field tool.&amp;nbsp; What happens when you try to join the outputs from the 2 sub-models to the Join Field tool? Do they populate the parameters for the tool?&amp;nbsp; Are the fields different value types (ie one is a string, one is a int/float)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2015 14:28:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53381#M1842</guid>
      <dc:creator>ToddBlanchette</dc:creator>
      <dc:date>2015-05-21T14:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Join Field" tool in Modelbuilder (iterators &amp; submodels)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53382#M1843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Exactly. They are just not appeared as in the image above. Just a blank box. If i use an iterator for my points i can put it in sort tool and have my field and the same is for my tables. But i cannot have two iterators inside my model, that's why i created two submodels&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2015 14:34:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53382#M1843</guid>
      <dc:creator>KONPETROV</dc:creator>
      <dc:date>2015-05-21T14:34:18Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Join Field" tool in Modelbuilder (iterators &amp; submodels)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53383#M1844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;REALLY??????? Will it select all fields also? Because i cannot click "Select All"!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2015 14:34:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53383#M1844</guid>
      <dc:creator>KONPETROV</dc:creator>
      <dc:date>2015-05-21T14:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Join Field" tool in Modelbuilder (iterators &amp; submodels)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53384#M1845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What happens when you type in the field names yourself?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2015 14:35:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53384#M1845</guid>
      <dc:creator>SepheFox</dc:creator>
      <dc:date>2015-05-21T14:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Join Field" tool in Modelbuilder (iterators &amp; submodels)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53385#M1846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No it cannot be done, just tried it. And i got&lt;/P&gt;&lt;P&gt;ERROR 000622: Failed to execute (JoinField). Parameters are not valid.&lt;/P&gt;&lt;P&gt;ERROR 000732: Input Table: Dataset C:\Win\Sik\Points\fid_%Name%.shp does not exist or is not supported&lt;/P&gt;&lt;P&gt;ERROR 000732: Join Table: Dataset C:\Win\Sik\Tables\f2%Name% does not exist or is not supported&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2015 14:39:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53385#M1846</guid>
      <dc:creator>KONPETROV</dc:creator>
      <dc:date>2015-05-21T14:39:46Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Join Field" tool in Modelbuilder (iterators &amp; submodels)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53386#M1847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you try to join the results from your sub-model to the Join Field tool as a parameter, does it not ask you what input parameter you would like to use that for?&amp;nbsp; Ex: join your shapefile output to the Join Field tool, set as parameter and click on Input Table.&amp;nbsp; Do the same for your output table, set as input parameter for the tool, and click on Table to Join.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2015 15:18:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53386#M1847</guid>
      <dc:creator>ToddBlanchette</dc:creator>
      <dc:date>2015-05-21T15:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Join Field" tool in Modelbuilder (iterators &amp; submodels)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53387#M1848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did it that way and as before i first get a message like in the following image i press ok and when i am pressing the button to run, the result is the same as the errors i wrote below &lt;IMG alt="image2.jpg" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/102052_image2.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2015 15:30:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53387#M1848</guid>
      <dc:creator>KONPETROV</dc:creator>
      <dc:date>2015-05-21T15:30:20Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Join Field" tool in Modelbuilder (iterators &amp; submodels)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53388#M1849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you explain what field you are sorting on that puts the two tables into the same order?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2015 15:42:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53388#M1849</guid>
      <dc:creator>SepheFox</dc:creator>
      <dc:date>2015-05-21T15:42:20Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Join Field" tool in Modelbuilder (iterators &amp; submodels)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53389#M1850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't understand why you are using iterate feature classes and tables, instead of iterate feature or row selection. Also, do you have overwrite ouptut set to true in the geoprocessing environments?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2015 15:53:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53389#M1850</guid>
      <dc:creator>SepheFox</dc:creator>
      <dc:date>2015-05-21T15:53:19Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Join Field" tool in Modelbuilder (iterators &amp; submodels)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53390#M1851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i sorted a column in a previous precedure to have my tables in the form i want, it hasn't any infuelnce to what i am doing now. It isn't something so hard but i cannot think what the problem is. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2015 16:07:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53390#M1851</guid>
      <dc:creator>KONPETROV</dc:creator>
      <dc:date>2015-05-21T16:07:22Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Join Field" tool in Modelbuilder (iterators &amp; submodels)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53391#M1852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the overwrite no, how can i&amp;nbsp; do that?&lt;/P&gt;&lt;P&gt;if i use iterate feature or row selection what is the difference? in a model i can have only one iterator, or you mean something for the sub?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2015 16:11:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53391#M1852</guid>
      <dc:creator>KONPETROV</dc:creator>
      <dc:date>2015-05-21T16:11:09Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Join Field" tool in Modelbuilder (iterators &amp; submodels)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53392#M1853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, I'm just not sure that any previous sorting you did will be used in this procedure, for one thing. Since this method clearly isn't working, Todd and I are both looking at the bigger picture of your entire process to see if there is abetter way to get it done, so you don't have to keep hitting your head into the same brick wall.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2015 16:12:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/problem-with-quot-join-field-quot-tool-in/m-p/53392#M1853</guid>
      <dc:creator>SepheFox</dc:creator>
      <dc:date>2015-05-21T16:12:54Z</dc:date>
    </item>
  </channel>
</rss>

