Select to view content in your preferred language

Survey123 Report Template - add related tables

2856
6
Jump to solution
11-23-2020 07:57 AM
AsafEvenPaz
Regular Contributor

Hi,

 

Is it possible to add fields from a related table in a report template?

Tags (1)
0 Kudos
1 Solution

Accepted Solutions
KimberlyMcCallum
Regular Contributor

Hi! I am by no means a Survey123 expert but I was able to accomplish this in my feature report template following the docs here: https://doc.arcgis.com/en/survey123/browser/analyze-results/featurereporttemplates.htm

In my case, I had user input data from a repeat question representing multiple watersheds related to a single point feature. In my feature report template Word document, I created a table like so: 

HUC

Name

Total Acres

Acres Burned

Percent Burned

${#WatershedFire}

${HUC}

 

${ Name}

 

${TotalAcres}

 

 

${AcresBurned}

 

 

=${PctBurned}

${/WatershedFire}

 

In this example, my related table is called WatershedFire and the fields (HUC, Name, TotalAcres, etc.). Note the syntax for opening and closing. When I generate a feature report, all the related records are added automagically and I get a table with multiple watersheds. 

 

I hope this helps! 

View solution in original post

6 Replies
KimberlyMcCallum
Regular Contributor

Hi! I am by no means a Survey123 expert but I was able to accomplish this in my feature report template following the docs here: https://doc.arcgis.com/en/survey123/browser/analyze-results/featurereporttemplates.htm

In my case, I had user input data from a repeat question representing multiple watersheds related to a single point feature. In my feature report template Word document, I created a table like so: 

HUC

Name

Total Acres

Acres Burned

Percent Burned

${#WatershedFire}

${HUC}

 

${ Name}

 

${TotalAcres}

 

 

${AcresBurned}

 

 

=${PctBurned}

${/WatershedFire}

 

In this example, my related table is called WatershedFire and the fields (HUC, Name, TotalAcres, etc.). Note the syntax for opening and closing. When I generate a feature report, all the related records are added automagically and I get a table with multiple watersheds. 

 

I hope this helps! 

AsafEvenPaz
Regular Contributor

Thanks. I actually found the documentation which mentions this option 🙂

GrantHoward1
Occasional Contributor

Hi Kimberly,
I have a related question. Is it possible to include ONLY ONE entry/record from the related table (our inspections) in the report. Ideally the latest entry. For property inspection reports we don't want the report to show the details of ALL the inspections ever completed, just the most recent and valid one.
Thanks,
Grant

Dschect
New Contributor

I imagine you could accomplish this by using ${#YourRelatedTable | orderByFields:"DateField" | resultRecordCount:1} ... ${/}

0 Kudos
Luiz_RobertoArueira_da_Silva
Occasional Contributor

Good morning.
Is it possible to use this solution for related tables that are not part of a Survey repeat?

thanks.

0 Kudos
Dschect
New Contributor

I found THIS video really helpful, skip to 30:30