Select to view content in your preferred language

Can I put an interactive able in my survey?

503
2
11-27-2017 01:12 PM
CherylHummel
New Contributor

I'm so sorry if this has been asked, and I'm extra sorry if this is an easy fix. I'd like to be able to put a table in my survey. This is what my datasheet looks like:

This is for taking stream data. I know I could put a new group for each transect, but is there an easier way to set up my survey to make is visually easier to input data?

Thanks!

Tags (1)
0 Kudos
2 Replies
JamesTedrick
Esri Esteemed Contributor

Hi Cheryl,

Currently, Survey123 doesn't support a table-like layout.  I've added your request to the enhancement discussion we have for this feature.

0 Kudos
ZacharyStauber1
Occasional Contributor

It's possible if you are just doing it for display (not data entry).  It's not pretty, but the label tag can handle HTML and some CSS formatting.  So you could do it in HTML like so:

In your survey sheet, create a line with a type of note, give it a name like mytable and then a label of the following (just paste this into the cell):

<table border="1">
 <tr>
  <th>Transect #</th>
  <th>Wetted Width (m)</th>
  <th>Max Depth (m)</th>
  <th>Reach</th>
  <th>% Pool (visual est.)</th>
  <th>% Riffle (visual est.)</th>
  <th>% Rum</th>
 </tr>
 <tr>
  <td>T1 (0m)</td>
  <td></td>
  <td></td>
  <td></td>
  <td></td>
  <td>NA</td>
  <td></td>
 </tr>
 <tr>
  <td>T1 (50m)</td>
  <td></td>
  <td></td>
  <td>A</td>
  <td></td>
  <td></td>
  <td></td>
 </tr>
 <tr>
  <td>T2 (100m)</td>
  <td></td>
  <td></td>
  <td>B</td>
  <td></td>
  <td></td>
  <td></td>
 </tr>
 <tr>
  <td>T3 (150m)</td>
  <td></td>
  <td></td>
  <td>C</td>
  <td></td>
  <td></td>
  <td></td>
 </tr>
 <tr>
  <td>T4 (200m)</td>
  <td></td>
  <td></td>
  <td>D</td>
  <td></td>
  <td></td>
  <td></td>
 </tr>
 <tr>
  <td>T5 (250m)</td>
  <td></td>
  <td></td>
  <td>E</td>
  <td></td>
  <td></td>
  <td></td>
 </tr>
 <tr>
  <td>T6 (300m)</td>
  <td></td>
  <td></td>
  <td>F</td>
  <td></td>
  <td></td>
  <td></td>
 </tr>
</table>

0 Kudos