I have a list of addresses that I am going to geocode to create a new feature class (we will call it TestFC) of points
I then need to buffer each location (feature) by X amount of miles and select features from a polygon FC that the buffer or distance intersects.
I then need to grab all the attribute values from the name field of each of these Features it intersects and write them to a comma delimited string and add them to a field in the new FC TestFC
I need this to happen for each row in the newly created FC TestFC.
Ex: I have 100 points...I want to query each point and return a list of counties to a string value that its intersects within 100 miles and write this to a field in the point FC
Any ideas on how to accomplish this?