Hi there,

I want to move the content of every Nth cell in a column up to just below the previous "N-cell" without affecting the rest of the columns.
In other words, in a specific column I want to keep for example every fourth entry, remove everything in between and move them up so that all the original fourth entry cell contents are now directly below each other, without affecting the other columns.
1a => 1a
2b => 2d
3c => 3g
4d => 4j
5e => 5
6f => 6
7g => 7
8h => 8
9i => 9
10j => 10

Thanks