I want to pass values from a column but that column should not be displayed on selection panel

Hello Helical Team,
In drill down, I want to pass values from a column but that column should not be displayed on the selection panel. I tried to hide that column but then that column does not appear in the Drill Down Script interface. How can this be achieved?

Hello Harika,
To pass the values from a column which is not displayed on the selection panel.

A. Drag all the columns you want as shown below.
image

B. Click on CSS editor on the report and paste the below code. Applying this CSS will hide the column from the front-end, however, that option will continue to appear in the drill down script interface. For Example in below the code we have hidden column number 6th and 7th.

 th:nth-child(6), td:nth-child(6),th:nth-child(7), td:nth-child(7) {
display: none;
}

image

C. Click on Apply. Those columns will not appear now.
D. Now you can apply drill down. You will be able to see all the columns whichever you have dragged in the selection column.

image

Thank You
Helical Team.