# write Value to Table # search cursor scurs = arcpy.SearchCursor(infc) # update cursor ucurs = arcpy.UpdateCursor(tbl) for scur in scurs: newRow = scur.getValue("ID") while newRow <> 0: for ucur in ucurs: ucur.Value = scur.getValue("Value") # update row ucurs.updateRow(ucur)
Solved! Go to Solution.