Custom template - Summary Report

Hi everyone

I have a summary report, and it work perfect, but I want to create a custom table below the summary for show % some values:

this is the style that my summary has, I want the exactly style and just add the table below, but I need to do all the summary on custom template and idk how, I need I help to do this

You may want to elaborate:

Where exactly do you want to add that? You may provide an example.

You may simply use the Page_DataRendered server event.

I want to extract info for my summary report and show in a table below the sumMary, when i change the pagination of the summary, i want that my table change the info too, exactly that

As suggested.

Just write your own code to extract info you need and set to the $footer argument.

It works, but now i need a help, how can I used the params of the search panel?, I mean, I create a query to bring some info and add in to my table, but in my search panel a have and column for users, and I want to use it like a WHERE in my query, on my select, to make this table dynamically

I tried with this $filter = $this->ListViewWhere(); but didn't work

I said the user column on my search panel, but I want to use what ever column on my search panel

I did it with $this->SearchWhere

Thank you