i have two xml nodes...
Code:
<number>2</number >
<remainder>5</remainder >
i want to concat them and then multiply the result by 20...
Code:
<xsl:variable name="rating" select="number(concat(number,'.',remainder)) * 20"/>
it's still seeing it as a string and setting "rating" = NaN. How should i approach this differently?