<table-group>
<html>
<head><title></title></head>
<body>
<table width="885">
<tr>
<td width="20%"><p></p></td>
<td width="20%"><p></p></td>
<td width="60%"><p></p></td>
</tr>
<tr>
<th align="left" valign="bottom"><p><b>Revision Date</b></p></th>
<th align="left" valign="bottom"><p><b>Sections Revised</b></p></th>
<th align="left" valign="bottom"><p><b>Description</b></p></th>
</tr>
<tr>
<td align="left" valign="top"><p>7/1/02</p></td>
<td align="left" valign="top"><p>All</p></td>
<td align="left" valign="top"><p>Complete manual revision to reflect changes related to the MMIS and HIPAA compliance.</p></td>
</tr>
<tr>
<td align="left" valign="top"><p>7/1/02</p></td>
<td align="left" valign="top"><p>8.0</p></td>
<td align="left" valign="top"><p>Local code YY604 was mapped to HCPCS code G9012 incorrectly in the manual as S9012. The code and definition were corrected.</p></td>
</tr>
</table>
*************my xslt file is here but no give the sum of column but work all function of my file.
<xsl:template match="table">
<h3 align="center">TABLE WIDTH:<xsl:value-of select="@width"/></h3>
<table>
<tr>
<xsl:for-each select="tr/td">
<td><xsl:value-of select="@width"/></td>
</xsl:for-each>
</tr>
<xsl:for-each select="tr">
<tr>
<xsl:choose>
<xsl:when test="th">
<xsl:for-each select="th">
<th style="background-color:skyblue;"><xsl:copy-of select="@*|node()"/></th>
</xsl:for-each>
</xsl:when>
<xsl:otherwise>
<xsl:for-each select="td">
<td style="background-color:orange"><xsl:copy-of select="@*|node()"/></td>
</xsl:for-each>
</xsl:otherwise>
</xsl:choose>
</tr>
</xsl:for-each>
</table>
</xsl:template>
</xsl:stylesheet>