ContributionsMost RecentNewest TopicsMost LikesSolutionsRe: How to hide a column in a table widget? Hi DXC try this columnsToHide = [1] widget.transformPivot( {}, function (metadata, cell) { columnsToHide.forEach(function(col) { if (metadata.colIndex == col) { // Add a second condition ( && metadata.rowIndex > 0 ) if you want to keep the table header cell.content = ' ' cell.style = { maxWidth: '0px', borderColor: 'white', color: 'white' } } }) } );