Hi,
In order to achieve something like this, You need to write / inject custom JS code into your JS editor. Sample code we have given below for your reference :
hi_container.set('postExecution', function(a){
var b = a.get("requestData");
var paramValue=b.filters[0].values[0];//parameter value
var iframee = $('table tbody tr').on('click', 'td:nth-child(1)', function () {
var rowdata = this.innerHTML;
$('table > tbody > tr').each(function(index, tr) {
var $tds = $(this).find('td');
var name = $tds.eq(0).text();
if(rowdata == name){
var course_id = $tds.eq(10).text();
var email = $tds.eq(11).text()
window.open('http://localhost:8085/hi-ee/hi.html?dir=1664458131124/1664460594029&file=0dcf8cd3-a565-436e-85c4-e5b26b6449ff.efw&mode=open&CourseId='+course_id+'&Email='+email,'_blank')
}
});
});
})
NOTE : Above code is just sample reference example. It will not work as it is. You need to change your drill down report/ dashboard URL in the text after window.open. Filter / parameter names, variable names as per your data and your use case.
Using CSS or column width property, those columns which are not required can be removed.
Thank You,
Helical Insight.