The first way I would handle this, is to have the Summary Platform name the output column as the same as the input column name. This is done by specifying
statistics column name format( "column" )
This is selectable from the Summary Platform Input Dialog Box
If you can not do this, then all that has to be done is to reset the column name using this JSL
:Name("% of Total(UP9010-01)") << set name( "UP9019-01: );
If this needs to be automated and not hard coded, and this column is the first column in the data table, it could be handled with this JSL
column(1) << set name(word(2,column(1)<<get name,"()"))
Jim