Alternatives for HTML table
Posted: Wed Jan 23, 2019 7:10 am
Hello,
I need help to preview an HTML table in a Text element that allows HTML.
If that's out of the question, what are other ways I could preview the data in a report that looks like a table?
Here is how I receive the data:
this is how I want it to look:

Thank you!
I need help to preview an HTML table in a Text element that allows HTML.
If that's out of the question, what are other ways I could preview the data in a report that looks like a table?
Here is how I receive the data:
Code: Select all
<table>
<tbody>
<tr>
<td style="text-align: center;"> time</td>
<td style="text-align: center;"> amount</td>
</tr>
<tr>
<td style="text-align: center;"> <strong>2 hrs</strong></td>
<td style="text-align: center;"> 8-28 %</td>
</tr>
<tr>
<td style="text-align: center;"> 4 hrs</td>
<td style="text-align: center;"> 31-51 %</td>
</tr>
</tbody>
</table>
<p style="text-align: center;"><strong></strong>
</p>
Thank you!