Hi,
either build an internal range table with option 'EQ' and sign 'I' for each constant and check with IN operator. Or do the same with a CASE:
CASE bername.
WHEN c_9 OR c_10 OR ... OR c_3l.
APPEND ...
ENDCASE.
A range table can additionally be used for a db select while the CASE only works for already accessed data.
Regards,
Klaus