Hi,
In my report, i have many tables on one page.
I want to insert 5 blank rows between each table.
How can do it?
Thanks.
How to insert blank row between each table
(4 posts) (2 voices)-
-
Hi,
The result tables are separated by default with a CSS definition:.rstable { margin-bottom: 2em; }
where the rstable is a CSS class for the result set.
If you want more space between the result sets, set following command in your report:
select 'dbr.css', '.rstable {margin-bottom: 5em;}';
You can also set the CSS definition in mydbr/user/userstyle.css if you want it in all reports.
--
myDBR Team -
Hi myDBR Team,
Thanks your reply.
It worked on web browser, but when i export to excel it not work.
In my way, i add 5 rows between each table , it worked.
select 'dbr.text', '';
You have another way? -
You can run the updater and get the latest build. There you have additional commands for positioning result sets in Excel. You can do:
select 'dbr.export.options', 'position.row.add', 5;
To add 5 additional rows between result sets.
--
myDBR Team
Reply
You must log in to post.