on 2007 Jun 11 10:36 AM
I have to display field 'CHECK NUMBER' and there is conditional option for that, example:- Suppose if check is due then it should display eaither cherck1 or check2 or check3 or check4.
how I will do that.
what would be the syantaxt for that.
thanks and regards....
Hi
You can use
IF..<condition>
CHECK1
elseif <condition>
CHECK2
elseif <condition>
CHECK3
endif.
or CASE <field>
when <val1>
check1.
when <val2>
check2.
when <val3>
check3.
encase.
<b>
Reward points for useful Answers</b>
Regards
Anji
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
use case statements.
CASE CHECK NUMBER.
when '1'.
....
when '2'.
......
when'3'.
....
endcase .
Girish
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
31 | |
2 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.