Hay I have this series:
3274
3274
2374
2374
2375
2374
2374
3275
Now I want to Marge all the subsequent rows and take the first row(that start the sequence)
For the example above I want the outcome be this:
3274
2374
2375
2374
2375
2374
3275
There is a sample way to that instade of iterate the all series and search for sequences?
Thanks