I have the following condition to test
<xsl:if test=" $Occupation='5'
or $Occupation='7'
or $Occupation='N'
or $Occupation='M'
or $Occupation='J'
or $Occupation='V'
or $Occupation='W'">
<xsl:value-of select="'Accounts'"/>
</xsl:if>
Is there a way to check like this?
<xsl:if test="$occupation contains('5','7','N','W','J','M')">