I hope you can help me out with a problem - I have a layer that represents stormwater retaining ponds and they get inspected every so often - So I set up a related inspection table that is linked by an id field. So for each polygon, you can have many inspections records in the related table (1 to many relationship)
Now a formal report is needed for each inspection - I've got most of the report figured out but I can't figure out if its possible to include a history of the previous inspections.
basically, I'm looking for something like this:
Current Inspection Info:
user, date, weather, wet/dry, comments, next steps, etc etc...
than the history at the end
___________________________________
Inspection Date | Observations | Status
12-1-2024 | Good | initial Review
1-25-2025 | Poor | In Review
3-15-2025 | Good | Final
__________________________
Ultimately, it would list out every inspection in the related table done on that pond with a few details from that record.
Thank you for your help - Carrie