I need to show the totals (dbr.sum) at the top of the result instead of the bottom.
Is it possible? I have read the documentation for dbr.sum and didn't find anything about it.
dbr.sum to show values at top
(2 posts) (2 voices)-
-
Totals are show at the end of each level. You could play with JavaScript to move the row to top. If you have only summary row at the bottom (not multiple summary levels), you can do it with single command:
select 'dbr.javascript', "$($('.summary_row')).parents('tbody').prepend($($('.summary_row')));", 'onload';
With multiple summary levels, things become more complicated.
--
myDBR Team
Reply
You must log in to post.