Could there be a setting I need to change in my jmp to get the codes mentioned to work? I have tried both solutions, and both of them result in the following output:
colsName = {":Name(\!"0\!")"};
colsName2 = {":Name(\!"0\!")"};
Here is the initial code:
colsName[count] = Eval Insert( "\[:Name("^test^")]\" );
colsName2[count] = ":Name(\!"" || test || "\!")";
Show( colsName );
Show( colsName2 );
colsName is a list of column names which is incremented. For now, count is equal to 1, and only one value (value 0) is trying to get written to the first element of the list, but I can't seem to get rid of the escape characters "\!".