<xsl:for-each select="//Row[1]/*[@Type='Data']" >
<xsl:variable name = "N" ><xsl:value-of select ="@Formula"/></xsl:variable>
<xsl:choose >
<xsl:when test ="@Format='0'">
<td class="Tablebody2" align="left" ><font size='1'><xsl:value-of select="format-number($N,'$ #,###,###')"/></font></td>
</xsl:when>
<xsl:when test ="@Format='1'">
<td class="Tablebody2" align="left" ><font size='1'><xsl:value-of select="format-number($N,'0.0')"/></font></td>
</xsl:when>
<xsl:when test ="@Format='2'">
<td class="Tablebody2" align="left" ><font size='1'><xsl:value-of select="format-number($N,'0.00')"/></font></td>
</xsl:when>
<xsl:when test ="@Format='D'">
<td class="Tablebody2" align="left" ><font size='1'><xsl:value-of select="format-number($N,'$ #,###,###')"/></font></td>
</xsl:when>
<xsl:when test ="@Format='P'">
<td class="Tablebody2" align="left" ><font size='1'><xsl:value-of select="format-number($N,'##.##')"/>%</font></td>
</xsl:when>
<xsl:otherwise>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
Thanks for your help in advance.
Requires Free Membership to View
This was first published in May 2002

Join the conversationComment
Share
Comments
Results
Contribute to the conversation