- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
How can I only select odd raw?
I have table with over 300,000 of data point, how can I use the "formula-raw state" function to write a command to only select even/odd raws?
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How can I only select odd raw?
// Select by script
Current Data Table() << select where( Mod( Row(), 2 ) );//select odd rows
Current Data Table() << select where( !Mod( Row(), 2 ) );//select even rows
// Or by column formula of Row State Column
Current Data Table() << New Column("Select Odd",Row State, set formula(Selected State(Mod(Row(),2))));