Hi
I think there's a bug in the If Not Processing with && and || operators.
Consider the following:
<!--@If(DwDate.Day!='55' && DwDate.Year!='2055')-->
Condition is met
<!--@Else-->
Else text
<!--@EndIf-->
Now if you simply place the 'NOT' condition
<!--@If Not(DwDate.Day!='55' && DwDate.Year!='2055')-->
Condition is met
<!--@Else-->
Else text
<!--@EndIf-->
We should get the Else resolution, but instead, we always get the If resolution
(Using 8.3.1.9)
Best Regards,
Nuno