i need to transpose 18000 rows of 1 colums into 6000 rows of 3 columns
source array is
[TABLE="width: 1000"]
<tbody>[TR]
[TD]Termid[/TD]
[TD]Language[/TD]
[TD]Text description[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]EN[/TD]
[TD]words and sentences[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]FR[/TD]
[TD]mots et phrases[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]NL[/TD]
[TD]woorden en zinnen[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]EN[/TD]
[TD]more of this[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]FR[/TD]
[TD]plus de ça[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]NL[/TD]
[TD]meer van dat[/TD]
[/TR]
</tbody>[/TABLE]
target array is
[TABLE="width: 1000"]
<tbody>[TR]
[TD]Termid[/TD]
[TD]EN[/TD]
[TD]FR[/TD]
[TD]NL[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]words and sentences[/TD]
[TD]mots et phrases[/TD]
[TD]woorden en zinnen[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]more of this[/TD]
[TD]plus de ça[/TD]
[TD]meer van dat[/TD]
[/TR]
</tbody>[/TABLE]
When i use {=TRANSPOSE(c2:c4)} and i try to copy into the following rows, the row reference is only augmented with 1 instead of 3 and i get {=TRANSPOSE(c3:c5)} instead of {=TRANSPOSE(c5:c7)}.
is there another way to solve this?
txs,
fva2600
source array is
[TABLE="width: 1000"]
<tbody>[TR]
[TD]Termid[/TD]
[TD]Language[/TD]
[TD]Text description[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]EN[/TD]
[TD]words and sentences[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]FR[/TD]
[TD]mots et phrases[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]NL[/TD]
[TD]woorden en zinnen[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]EN[/TD]
[TD]more of this[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]FR[/TD]
[TD]plus de ça[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]NL[/TD]
[TD]meer van dat[/TD]
[/TR]
</tbody>[/TABLE]
target array is
[TABLE="width: 1000"]
<tbody>[TR]
[TD]Termid[/TD]
[TD]EN[/TD]
[TD]FR[/TD]
[TD]NL[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]words and sentences[/TD]
[TD]mots et phrases[/TD]
[TD]woorden en zinnen[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]more of this[/TD]
[TD]plus de ça[/TD]
[TD]meer van dat[/TD]
[/TR]
</tbody>[/TABLE]
When i use {=TRANSPOSE(c2:c4)} and i try to copy into the following rows, the row reference is only augmented with 1 instead of 3 and i get {=TRANSPOSE(c3:c5)} instead of {=TRANSPOSE(c5:c7)}.
is there another way to solve this?
txs,
fva2600