I am trying to put a table between rows of another table .
But after I put a table after several rows , the original rows are lost their format .
Any idea how to fix this issue .
My knowledge of xslt is little bit limited .
<table border="1">
<tr bgcolor="#006699">
<th ALIGN="LEFT">PCB Barcode</th>
<th ALIGN="LEFT">Date and Time</th>
<th ALIGN="LEFT">ProductPWI</th>
<th ALIGN="LEFT">Conveyor Speed</th>
</tr>
<xsl:for-each select="GeneralReflowProcessReport/Results/GeneralReflowProcessReportEntry/PcbInfo/PcbInfoEntries/PcbInfoEntry">
<tr>
<td style='padding:2px 100px 2px 2px'><xsl:value-of select="PcbBarcode"/></td>
<td style='padding:2px 20px 2px 2px'><xsl:value-of select="ReflowTime"/></td>
<td style='padding:2px 20px 2px 2px'><xsl:value-of select="ProductPWI"/></td>
<td style='padding:2px 20px 2px 2px'><xsl:value-of select="ConveyorSpeed"/></td>
</tr>
<xsl:if test="PcbStatistics/PcbStatisticsEntries">
<br/>
<table border="1" >
<tr bgcolor="#006699">
<th ALIGN="LEFT">Statistics Limits:</th>
</tr>
<tr>
<td style='padding:2px 100px 2px 2px'><xsl:value-of select="PcbStatistics/PcbStatisticsEntries/PcbStatisticsEntry/StatisticsName"/></td>
</tr>
</table>
<br/>
</xsl:if>
</xsl:for-each>
</table>

You have to put the table inside a CELL in your current table: