Hi,
I did a rexx panels where you can enter some choices, i use the variables &W and &K.
And i did a squels (skeleton) where i want to use the SEL/ENDSEL function.
I want when &K= O && &W = N
It doessomething
And when &W= O && &K = N
Do an other thing.
Actually when &K = O && W = N , it work but the other function doesn't.
Do someone know how to do it ?
Thanks
)IF &K= O && &W = N THEN )DO
It does something
)ENDDO
)ELSE )IF &W= O && &K = N THEN )DO
Do another thing.
)ENDDO