Hi,
I want to sort a column by removing duplicates, but not all duplicates, only those that appear in sequence, i.e:
1
2
3
3 (I want this removed)
4
2
3
2
2 (I want this removed)
3
4
4 (I want this removed)
Reason for this is that I'm trying to build a tree structure where various instances...