[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] value-of select - then multiply


Subject: Re: [xsl] value-of select - then multiply
From: Adam Nielsen <adam.nielsen@xxxxxxxxx>
Date: Wed, 18 Jun 2008 11:54:43 +1000

<xsl:value-of select="Work_Location_longitude (position() -1) * 15 "/><!-- problem here -->

I want to get the Work_Location_longitude value, and add an offset value to this if there is more than one record with the same Work_Location_longitude value.

If Work_Location_longitude is an element, then presumably you could do this:


<xsl:value-of select="(Work_Location_longitude/position() - 1) * 15"/>

This would return a value 0, 15, 30, 45, etc. depending on the position of the Work_Location_longitude element relative to its parent.

Cheers,
Adam.


Current Thread