I want to construct a statement containing and and multiple or expressions in xml like
<xsl:choose>
<xsl:when test="VAR1 and VAR1/text() != 'A' | 'B' | 'C'">
<xsl:value-of select="$data"/>
</xsl:when>
<xsl:otherwise>0.0</xsl:otherwise>
</xsl:choose>
but its nt working...