Edit Reports slide

Hi all,

To hide the specific columns in the report table, you can add the following JavaScript codes to the Report Slide’s On Load event > Execute JavaScript action:

var columns = [3, 8]; // column index
for (var i = 0; i < columns.length; ++i) {
    $('table th:nth-child(' + columns[i] + ')', this.node).hide();
    $('table td:nth-child(' + columns[i] + ')', this.node).hide();
}

Then, edit the value of the var columns in the scripts. Enter the correct column number you want to hide.
For example, the above code demonstrates how to hide columns 3 and 8.

Hope it helps.