Skip the first record in a dataset
AnsweredI have a need in the Data Mapper to do a For Each where the record/row number is not 1. Basically I need to skip the first record in a dataset and do a for each loop on records 2-end.
I will also have to do the opposite in a different mapper. Pick only the first record/row and ignore the rest.
0
-
Official comment
For the first situation, you can use the following rule
for-each[position() > 1 ]
For the second situation, you don't need a for each rule
Please sign in to leave a comment.
Comments
1 comment