difference between set and new table variable - strange results in writing string?
could someone help me understand why the 36D10 and 36E10 table variables come back expanded to sci notation? but seemingly only for 'new' instead of 'set' table variable?Thanks,--Peach dt = New Table("Table");
testvar = "36D10";
dt << New Table Variable("tv_testD", char(testvar));
testvar = "36C10";
dt << New Table Variable("tv_testC", testvar);
testvar = "36F10";
dt << New Table Variable("t
...