> try some parentheses with the one that doesn't work, something
> like this....
>
> IF CCISCH=1 THEN (IF CCISTR=TRUE THEN CCISTRA=TRUE
> ELSE CCISTRA=FALSE);
>
Or use AND instead.
IF CCISCH=1 AND CISTR=TRUE THEN CCISTRA=TRUE
ELSE CCISTRA=FALSE;
--
Dennis
|