I am generating a summary table and output to an rtf file. In this table, the first column is the categories, and the other columns are the counts of different groups. I would like to split this wide table into two pages but keep the first column on the second page as well.
What I have now:
Category | grpA | grpB | grpC | grpD |
---|---|---|---|---|
A | 3 | 4 | 4 | 6 |
B | 5 | 2 | 5 | 8 |
What I want:
page 1:
Category | grpA | grpB |
---|---|---|
A | 3 | 4 |
B | 5 | 2 |
page 2:
Category | grpC | grpD |
---|---|---|
A | 4 | 6 |
B | 5 | 8 |
I have checked split_down, split_across, these functions seem could not keep the first column (category) on the second page.
Thank you in advance!