Hello all,
i have a very simple survey123 form to capture photos in a repeat function.
I have photos description with them as well. All i want to do is to export them side by side rather than vertically.
Can someone provide me with working solution.
I tried using this one, but it doesn't work
${#Information}
${Photo | size:200:0 | appearance:"fit"}
${Photo_Name}
${/Information}
https://community.esri.com/t5/arcgis-survey123-blog/survey123-tricks-of-the-trade-photos/ba-p/897907
I would try this first,
${#Information}${Photo | size:200:0 | appearance:"fit"} ${/}
If that works to get them horizontal, I would then experiment with getting the photo name underneath.
All i want to do is to export them side by side rather than vertically.
Exporting into columns in S123 is annoying. I do have a process that works fairly well though, but it's a little involved.
Here is the S123 stuff:
type | name | label | calculation | bind::type |
begin repeat | oddeven_rpt | oddeven_rpt | ||
calculate | oddeven_index | position(..) | decimal | |
calculate | oddeven_math | (round(${oddeven_index} div 2,0)+(${oddeven_index} div 2))-${oddeven_index} | decimal | |
calculate | oddeven_output | if(${oddeven_math}=0,'B','A') | ||
image | oddeven_image | Take a Picture | ||
end repeat |
You would look at ${oddeven_output} for even items (A) and odd items (B). Use this in your feature report.
In the Feature Report,
Note, I stole this from a college's unfinished Feature Report. I don't remember where my original example went to. But this gives you the general idea of the layout.
|
|
* If my shoddy memory serves, the repeat end marker, ${/}, is supposed to be in the second cell of the nested table so that each photo and associated description get their own cell.