Friday, October 26, 2007

How to print data across the columns?

Let's say we have the following data,

<rowset>
<row>
<data>A</data>
</row>
<row>
<data>B</data>
</row>
...
...
<row>
<data>E</data>
</row>
</rowset>

And we want to print them in the following way:

A B
C D
E

- With using of MS Word basic method (Format->columns), it will print the data first down and then across. Like,
A D
B E
C

- I found something workaround to resolve this issue.
1. Create one table with two columns.
2. Create another table with one row and column in column1 and second table in column2

See below:




Output: