I have columns A to H
If column H for any row is greater than 0, i want data from column D till H for that row to be inserted below the row
e.g.
Sample data:
A 1 2 3 A 1 2 0
B 1 2 4 B 2 2 3
C 1 2 3 C 2 2 6
D 1 2 7 D 1 2 0
desired output:
A 1 2 3
B 1 2 4
B 1 2 3
C 1 2 3
C 2 2 6
D 1 2 7
Bookmarks