Passing table column in drill down without showing

Hello Helical Team,
I am using Helical Insight version 4.0. I have created a drill down report. In the child report I want to hide a column which is passed as a filter to the parent report. How can I achieve this?

Thank you team.

Hello,
You can add the below code in the CSS editor at report level and apply.
th:nth-child(1){
display: none !important;
}
td:nth-child(1){
display: none !important;
}
In the above code ‘1’ represents that we are hiding 1st column. We can hide any column using this above code. Refer to below image.

image

Now you can create drill down report and even pass the hidden column also as a parameter to the drill down child report. Thank you for reaching out to us!