cancel
Showing results for 
Search instead for 
Did you mean: 

check-

Former Member
0 Kudos
51

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....

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

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

Answers (1)

Answers (1)

Former Member
0 Kudos

use case statements.

CASE CHECK NUMBER.

when '1'.

....

when '2'.

......

when'3'.

....

endcase .

Girish