How to extract odd rows from a table DAT?

Hello,
Do you know how can I extract odd (uneven) rows from a table ? I think of using a select dat with row condition but I don’t know what the expression should be ?
Thank you!

this is a great place for the mod function. This is what the mod functions does to the actual row value:
int( me.inputCell.val ) % 2

Using it in the row select condition using an equality comparison works well:


Thank you very much Lucas!!

1 Like