xsl-list
[Top] [All Lists]

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

2008-06-18 01:23:23

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.

If there are three WLL elements, then WLL/position() returns the sequence
(1,2,3), and subtracting one from this sequence is an error.

Michael Kay
http://www.saxonica.com/


--~------------------------------------------------------------------
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>
--~--