zohebakber
07-27-2023Cloud Apps
Hi zohebakber ,
I know this response comes a bit late, but just in case you still need it and also for people looking for it in the future, here is a widget script to rename Grand Total for the Linux version. Tested on L2024.1 and it works:
widget.transformPivot(
{type: ['grandtotal']},
function (metadata, cell) {
if(cell.content == 'The title to be changed') {
cell.content = 'The new title';
}});
Best Regards,
Volodymyr