I am trying to create an HTML view of my collection so that I can send it to print using a flow. Having trouble with the exact html i need. I suspect I need some kind of nested table.
Here is what I want:
Section A: Questions
Subsection 1: Academic Standards
1a Are the standards set appropriate? | Yes
1b Any other comments | No comments right now
Subsection 2: [subsection name]
[question] | [answer]
Section B: [Section name]
etc etc
I have the following:
I basically dont want the section name and subsection name to repeat for every question/answer pair:
This is the code I have so far:
<font size='4' face='Segoe UI'>
<table style='width:100%'>"
& Concat(colQuestionAnswer, "
<tr>
<td> Section: " & SectionName & "</td></tr>
<tr>
<td> Subsection: " & SubsectionName & "</td>
<td><tr><td>" & Question & "</td><td>" & Answer & "</td></tr></td>
</tr>") &
"</table>
</Font>
<br><br>
Thanks in advance for any tips or nudges in the right direction
User | Count |
---|---|
260 | |
110 | |
98 | |
56 | |
40 |