Issues aligning table in report

(imported topic written by rpedregon)

Hello, I am creating a fairly simple report that creates a table to show actions that have been ran for a business day. i get the data and table just fine, however the table displays way at the bottom of the display section of the report. i’ve tried to wrap it in a div to have it display at the top of the display section, but it’s stll not working. here is my code:

<?Relevance trs of ( td of (name of it) & td of (name of issuer of it) & td of (time issued of it as string) ) of bes actions whose (time issued of it > now - 1*day) ?>
Action Name Operator Name Time Action Started

any suggestions on how to get my table to display at the top of the display section???

thanks!

(imported comment written by Lee Wei)

Yes I have seen this behavior with HTML displaying that are outside of the table/row/cell tags.

These CR/LF are added by Web Reports when you return multiple rows.

one two one two

To fix it, simply use Concatenations to return one row instead.

<?Relevance concatenations of trs of (td of (name of it) & td of (name of issuer of it) & td of (time issued of it as string) )of bes actions whose (time issued of it > now - 1*day) ?>
Action Name Operator Name Time Action Started

(imported comment written by rpedregon)

That was amazing. thank you so much, that was killing me.