Question
Splitting data into two tables then alternating the two tables down the page
I've got a table of statistics shown by week but it's getting
a little crowded.
I'd like to be able to split it into two separate tables - summary and then breakdown of part of the statistics. The table is using lots of array notation and I'm not sure how to repeat ['currentRow']
Example (using | to separate cells in table)
Currently
Term1
Wk 1 | Total bookings | R values | F+ P values | U + L values | NW + NU values | NS values | WE + WR + WT
Wk 2 | Total bookings | R values | F+ P values | U + L values | NW + NU values | NS values | WE + WR + WT
...
Term 2
Wk 1 | Total bookings | R values | F+ P values | U + L values | NW + NU values | NS values | WE + WR + WT
Wk 2 | Total bookings | R values | F+ P values | U + L values | NW + NU values | NS values | WE + WR + WT
...
What I'd like to get is something along the lines of
Term 1 Summary
Wk 1 | Total bookings | R values | F+ P values |
Wk 2 | Total bookings | R values | F+ P values |
Term 1 Details
Wk1 | U + L values | NW + NU values | NS values | WE + WR + WT
Wk2 | U + L values | NW + NU values | NS values | WE + WR + WT
Term 2 Summary
.....
I guess the bit i'm most unsure about at the moment is how to repeat the row of data across the two tables.
Any pointers most welcome
Any questions to work out what I'm talking about also welcome
Thanks
Michael
I'd like to be able to split it into two separate tables - summary and then breakdown of part of the statistics. The table is using lots of array notation and I'm not sure how to repeat ['currentRow']
Example (using | to separate cells in table)
Currently
Term1
Wk 1 | Total bookings | R values | F+ P values | U + L values | NW + NU values | NS values | WE + WR + WT
Wk 2 | Total bookings | R values | F+ P values | U + L values | NW + NU values | NS values | WE + WR + WT
...
Term 2
Wk 1 | Total bookings | R values | F+ P values | U + L values | NW + NU values | NS values | WE + WR + WT
Wk 2 | Total bookings | R values | F+ P values | U + L values | NW + NU values | NS values | WE + WR + WT
...
What I'd like to get is something along the lines of
Term 1 Summary
Wk 1 | Total bookings | R values | F+ P values |
Wk 2 | Total bookings | R values | F+ P values |
Term 1 Details
Wk1 | U + L values | NW + NU values | NS values | WE + WR + WT
Wk2 | U + L values | NW + NU values | NS values | WE + WR + WT
Term 2 Summary
.....
I guess the bit i'm most unsure about at the moment is how to repeat the row of data across the two tables.
Any pointers most welcome
Any questions to work out what I'm talking about also welcome
Thanks
Michael
