How To’s

Writing Files Excel

Single Page

TODO

Multi Page

TODO

Merging Cells

Merging cells is performed in the template, and tries to match the html spec by making use of the existing colspan and rowspan attributes that you can set on elements like <th> to change how many visual cells they span across.

Note Currently merging cells are only supported in <th> elements.

Merging Cells Horizontally

../_images/colspan_row.png
<table>
  <thead>
    <tr>
      <th colspan="2">I'm spanning 2 columns!</th>
    </tr>
  </thead>
</table>

Merging Cells Vertically

../_images/rowspan_row.png
<table>
  <thead>
    <tr>
      <th rowspan="3">I'm spanning 3 rows!</th>
    </tr>
  </thead>
</table>

Creating a “container” row

../_images/rowspan_contained_row.png
<table>
  <thead>
    <tr>
      <th rowspan="2">bar</th>
      <tr>
        <th>top1</th>
        <th>top2</th>
      </tr>
      <tr>
        <td>bottom1</td>
        <td>bottom2</td>
      </tr>
    </tr>
  </thead>
</table>