Hi.

I want to know if with Pivot Tables for Views i can generate a table with Multiple headers in the columns based on the taxonomy hierarchy.

I got this taxonomy:

- Parent 1
-- Child 1
-- Child 2
-- Child 3
- Parent 2
-- Child 4
-- Child 5
-- Child 6

And i want to generate a table like this:

<table border=1>
<thead>
<tr>
<th scope="col"></th>
<th scope="col" colspan="3">Parent 1</th>
<th scope="col" colspan="3">Parent 2</th>
</tr>
<tr>
<th></th>
<th>Child 1</th>
<th>Child 2</th>
<th>Child 3</th>
<th>Child 4</th>
<th>Child 5</th>
<th>Child 6</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Y Axis 1</th>
<td>1000</td>
<td>2000</td>
<td>3000</td>
<td>4000</td>
<td>5000</td>
<td>6000</td>
</tr>
<tr>
<th scope="row">Y Axis 2</th>
<td>1000</td>
<td>2000</td>
<td>3000</td>
<td>4000</td>
<td>5000</td>
<td>6000</td>
</tr>
</tbody>
</table>

Table with headers column