I am creating a survey to assess park's operations. Within each park there are multiple operation id's for assessment.
I want to use pulldata() to list out the id's in the park, not just one. I need to do this for other features in the parks, like there may be multiple playground units in one park and I want to display all of their id's/info as well.
Here is an example of my csv looks like:
| ParkID | OperationID | ParkName |
|---|
1000 | 00025 | Julia's Walk Park |
| 1000 | 00035 | Julia's Walk Park |
| 1002 | 0009 | Main Street Promenade |
I don't have to have to concat several opid's within the pulldata() formula because not all of the parks contain multiple id's, and there isn't a set number of ops or features per park.
Thanks!