Colleagues,
I'm passing variable to a local macro, in order to use in the chart:
.
I would like to modify content of the macro by:
but got an error message: substr not allowed.
I'm passing variable to a local macro, in order to use in the chart:
Code:
local grphtitle : variable label `graphstub'may13
I would like to modify content of the macro by:
- Removing last 13 characters
- Adding some string up front: Measure for ABC:
Code:
local grphtitle : substr(`grphtitle',1,length(`1')-3)
Comment