Thanks curtvprice for the nugget of information, please can you help me with this
Please can you kindly help with this script also; i am trying to do a search through my attribute table, for a field called TDP_Status and if the attribute is GENERATED, I want the arcpy script to print TDP ALREADY GENERATED and stop the process else it should continue with the buffer analysis. This is my small script
generatedFieldName = "TDP_Status"
rows = arcpy.SearchCursor("Parcels", '"TDP_Status" = \'GENERATED\'')
for row in rows:
if row.TDP_Status = 'GENERATED'
print TDP ALREADY GENERATED
else:
arcpy.Buffer_analysis ("Parcels", "ClipFeature", "12.5 meters", "FULL", "ROUND", "LIST")
Any suggestions?