Sometimes it is useful to create an XSLT template for use in a map using the mapper. Creating a template for reuse during the map is not as hard as it may seem. First, Drag 2 scripting functoids to the map canvas. The first scripting functoid needs to be setup as an XSLT Template. Here is some sample code to put in the template. <xsl:template name="to-numeric"> <xsl:param name="input"/> <xsl:choose> </xsl:when> <xsl:when test="contains($input, '%')"> <xsl:value-of...