Re: data formating
Hey simon,
thanks for your input...however, what it does is list and duplicate data in columns E to H where data in H is not 0
i would like those entries to appear below the corresponding A to D entries.
thanks
Re: data formating
Hey simon,
thanks for your input...however, what it does is list and duplicate data in columns E to H where data in H is not 0
i would like those entries to appear below the corresponding A to D entries.
thanks
sample data
[TABLE="width: 64"]
1
2
3
4
5
6
7
[/TABLE]
desired outcome
[TABLE="width: 64"]
1
1
2
2
2
2
2
3
4
4
4
5
5
5
5
5
5
6
7
[/TABLE]
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:
[TABLE="width: 512"]
A
[/td]1
[/td]2
[/td]3
[/td]A
[/td]1
[/td]2
[/td]0
[/td]B
[/td]1
[/td]2
[/td]4
[/td]B
[/td]2
[/td]2
[/td]3
[/td]C
[/td]1
[/td]2
[/td]3
[/td]C
[/td]2
[/td]2
[/td]6
[/td]D
[/td]1
[/td]2
[/td]7
[/td]D
[/td]1
[/td]2
[/td]0
[/td]
[/TABLE]
desired output:
[TABLE="width: 512"]
A
[/td]1
[/td]2
[/td]3
[/td]B
[/td]1
[/td]2
[/td]4
[/td]B
[/td]1
[/td]2
[/td]3
[/td]C
[/td]1
[/td]2
[/td]3
[/td]C
[/td]2
[/td]2
[/td]6
[/td]D
[/td]1
[/td]2
[/td]7
[/td]
[/TABLE]