Hi ! I hope someone can help.
I'm trying to create more attributes within existing list without exploding and rebuilding it. Like this:
_list{0}.aaa : A_123
_list{1}.aaa : A_234
_list{2}.aaa : B_245
to
_list{0}.aaa : A
_list{0}.bbb :123
_list{1}.aaa : A
_list{1}.bbb: 234
_list{2}.aaa : B
_list{2}.bbb: 245
Is there a way?
I'm specially looking for help on the list creating part. I can manage renaming the list values;)
I was looking for a way to first do this:
_list{0}.aaa : A_123
_list{0}.bbb : A_123
and than do this:
_list{0}.aaa : A
_list{0}.bbb : 123
cheers,
ronald