Rename a Column to reflect current month Name

Hello.
I have a summarized column where I can show the total of the product delivered in the current month for each region. How can I rename the column and add current month name there?

Thanks

Hi,

You can use the transformation « rename with lookup ».
The new name can be an expression like
‘Month ‘ & format(now(), ‘yyyy-MM’)

Regards

1 Like

Thank you.