[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Unidentified subject!



PureBytes Links

Trading Reference Links

> 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