Nested for loop problem
Hi, I am testing a nested for loop. col loop will create new columnsrow loop will write in data for each row. The inner row loop seems has problem, it created 1st col, but that is all. ====================colNames=list();
colNames[1]="A";
colNames[2]="B";
colNames[3]="C";
dt = New Table("new");
Current Data Table(dt);
for (col=1,col<=3,col++,
dt<<NewColumn(colNames[col]);
for(row=1,row<=4,row++,...
ngonzalez0