Not If statement not working

Hi friends,
I confuse in below statement, can someone explain below statement?

In below statement it goes in ELSE part which is correct but in 2nd screenshot I put NOT even then it goes ELSE instead of TRUE.
Please clear this point.
Both variables data type is string
Status=“PROCESSED DATE: 09/19/2022”

Hi,

Because NOT is evaluated before AND.
So, NOT A AND B means not NOT (A AND B) but (NOT A) AND (B)

The following document helps you.

Regards,

Got it. Thanks @Yoichi

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.