So you want to identify which (if any) polygons with the same capture date overlap each other in any way, correct?
OK, not sure what you have done to this point, but you can try what may be a simpler approach for you using 2 tools:
Summary Statistics
Dissolve
Here's the idea:
- If you run Summary Statistics on your feature class that has an area field, by case (your capture date field), to sum area, you will get a table of total area of polygons per capture date. This will be a sum total counting any areas overlapping.
- Then if you run Dissolve to produce a test feature class, dissolving by capture date, allowing multipart features in the result, you will get a new area field where any overlapping areas have been 'made 1'; i.e., the common area will only be computed once. This means that for any set of 'capture date' features that has any overlap, the 'summary' area figure will not match the 'dissolve' area figure.
- In order to 'find' the problem features, then join the table result to the feature class result by your capture field and perform a selection query on the areas, basically dissolveArea <> summaryArea.
Get the picture? Note that if you're not using a gdb feature class, you may have to re-calculate an area field in the Dissolve result - can't remember if you can execute a summary from within Dissolve.
If you need more help you can zip and attach a sample of your data - it really isn't a long process, so if you don't see what to do I can send you the results back with a better explanation.