KoolReport's Forum

Official Support Area, Q&As, Discussions, Suggestions and Bug reports.
Forum's Guidelines

Add space between 2 tables #3324

Open saiful opened this topic on on Aug 12 - 3 comments

saiful commented on Aug 12

hi, i have 2 report tables and i need to export it into 1 excel sheet, but how to add space (or some blank rows) between 2 tables?

i have tried to insert div but it's not working

ps: the table rows are dynamic

Sebastian Morales commented on Aug 14

How about adding a blank excel/Text widget just between your two excel/Table in your excel view file?

saiful commented on Aug 16

it's not working, for now i use dash like this

Sebastian Morales commented on Aug 16

That's a clever solution! You can also try the blank character in excel view file like this:

//MyReportExcel.view.php

<div>
    <?php
    Table::create(array(
        ...
    ));
    ?>
</div>

<div>&nbsp;</div>

<div>
    <?php
    Table::create(array(
        ...
    ));
    ?>
</div>

Build Your Excellent Data Report

Let KoolReport help you to make great reports. It's free & open-source released under MIT license.

Download KoolReport View demo
None yet

Excel