Let's say we have the following data,
<rowset>
<row>
<data>10</data>
</row>
<row>
<data>20</data>
</row>
...
...
<row>
<data>50</data>
</row>
</rowset>
And we want to print them in the following way:
10 20
30 40
50
- With using of MS Word basic method (Format->columns), it will print the data first down and then across. Like,
10 20
30 40
50
There is 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
then it will display data as
10 20
30 40
50
<rowset>
<row>
<data>10</data>
</row>
<row>
<data>20</data>
</row>
...
...
<row>
<data>50</data>
</row>
</rowset>
And we want to print them in the following way:
10 20
30 40
50
- With using of MS Word basic method (Format->columns), it will print the data first down and then across. Like,
10 20
30 40
50
There is 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
then it will display data as
10 20
30 40
50