I cant make my code work. I am trying to move some newly created columns to specific locations but I get the next error:
"Unrecognized key word"
Do you guys have any ideas of whats wrong here?
ColDelta=(ColNum-2)/2;
ColStart=4;
For(k=1, k<=ColDelta, k++,
TabData << Move Selected Columns(
Column (ColNum+k), after(Column(ColStart))
);
ColStart=ColStart+3;
);