[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
Re: [xsl] for-each loops: arithmetic functions
Subject: Re: [xsl] for-each loops: arithmetic functions
From: Mike Brown <mike@xxxxxxxx>
Date: Tue, 2 Jan 2001 16:21:09 -0700 (MST)
|
> average days overdue: <xsl:value-of select="totalDaysOverdue" div
> select="finePerDay"/>
<xsl:value-of select="totalDaysOverdue div finePerDay"/>
> total $ collected: <xsl:value-of select="finePerDay" *
> select="totalDaysOverdue"/><BR/>
<xsl:value-of select="finePerDay * totalDaysOverdue"/>
Kicking yourself yet? :)
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|