So, I found a successful way to do this (using the cdonner clause), have 2 identical table templates and display all the odd records, and the other show all the even records.
Here's what the design mode looks like:
|-------------------| | table 1 | table 2 | |-------------------|
Then, what I did was on each tab of each table, adding expressions to the Visibility> Hidden value of tablerow property :
For even lines:
=RowNumber(Nothing) Mod 2 = 0
For even lines:
=RowNumber(Nothing) Mod 2 = 1
source share