<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.
--~------------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--