Re: [xsl] not condition is not working for my XSLT

Subject: Re: [xsl] not condition is not working for my XSLT
From: "Mukul Gandhi gandhi.mukul@xxxxxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Fri, 16 Sep 2016 07:15:52 -0000
On 16 September 2016 at 00:22, Rahul Singh rahulsinghindia15@xxxxxxxxx <
xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx> wrote:


>                         <xsl:if test="$tranFile/objects/Contact[Id_c !=
> $aN]">
>

It seems you've made an error of case sensitiveness. The correct code for
your example looks like needs to be

<xsl:if test="$tranFile/objects/Contact[ID_c != $aN]">


With best regards,
Mukul gandhi

Current Thread