To delete columns you can use any one of these LabTalk commands:
win -a WorkSheetName; // Make the worksheet active for(ii=wks.ncols;ii>1;ii--) {delete %(%H,$(ii));} // delete columns greater than (beyond) col 2 win -c %H; // close the worksheet window