Hi.
I'm trying to create new columns with the same name, but different extension.
For example, I'm trying to create column 1 & column 2 &column 3... etc.
Here is what I have:
lista = list(1 , 2, 3 , 4);
for(i1=1, i1<N Items ( lista)+1, i1++,
dt_limit << new column ( insert( "condition", char ( lista(i1) ) ) );
);
it doesn't seem to work, however. It either returns an error or return something like this: " condition (1, 2, 3, 4) " or: "conditionlista"
Any guidance is appreciated.