Not able to close table in a for loop
Hi,I want to use a for loop to keep import multiple files and close it after concatenate. the import multiple and concatenate is working but not the close(). I tried wait(), still not working. Not sure what I did wrong. dt1 = New table();
dir = {"dir1","dir2","dir3"}; //can have many dirs
for(i=1, i<= N Items(dir), i++,
dt[i] = Multiple File Import(
<<Set Folder( path1||"\" || dir[i] ),
<<Set S
...