Here's a way to do it in code.
dt = New Table( "Untitled 3", Add Rows( 10 ),
New Column( "Column 1", Numeric, "Continuous", Format( "Best", 12 ),
Set Values( [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] ) ),
New Column( "Column 2", Numeric, "Continuous", Format( "Best", 12 ),
Set Values( [., ., ., ., ., ., ., ., ., .] ) ),
New Column( "Column 3", Numeric, "Continuous", Format( "Best", 12 ),
Set Values( [., ., ., ., ., ., ., ., ., .] ) ),
New Column( "Column 4", Numeric, "Continuous", Format( "Best", 12 ),
Set Values( [., ., ., ., ., ., ., ., ., .] ) ),
New Column( "Column 5", Numeric, "Continuous", Format( "Best", 12 ),
Set Values( [., ., ., ., ., ., ., ., ., .] ) ),
New Column( "Column 6", Numeric, "Continuous", Format( "Best", 12 ),
Set Values( [., ., ., ., ., ., ., ., ., .] ) ),
New Column( "Column 7", Numeric, "Continuous", Format( "Best", 12 ),
Set Values( [., ., ., ., ., ., ., ., ., .] ) ),
New Column( "Column 8", Numeric, "Continuous", Format( "Best", 12 ),
Set Values( [., ., ., ., ., ., ., ., ., .] ) ),
New Column( "Column 9", Numeric, "Continuous", Format( "Best", 12 ),
Set Values( [., ., ., ., ., ., ., ., ., .] ) ),
New Column( "Column 10", Numeric, "Continuous", Format( "Best", 12 ),
Set Values( [., ., ., ., ., ., ., ., ., .] ) ),
New Column( "Column 11", Numeric, "Continuous", Format( "Best", 12 ),
Set Values( [., ., ., ., ., ., ., ., ., .] ) ),
New Column( "Column 12", Numeric, "Continuous", Format( "Best", 12 ),
Set Values( [., 0, ., ., ., ., ., ., ., .] ) ),
New Column( "Column 13", Numeric, "Continuous", Format( "Best", 12 ),
Set Values( [., ., ., ., ., ., ., ., ., .] ) ),
New Column( "Column 14", Numeric, "Continuous", Format( "Best", 12 ),
Set Values( [., 0, ., ., ., ., ., ., ., .] ) ),
New Column( "Column 15", Numeric, "Continuous", Format( "Best", 12 ),
Set Values( [., ., ., ., ., ., ., ., ., .] ) ),
New Column( "Column 16", Numeric, "Continuous", Format( "Best", 12 ),
Set Values( [., 0, ., ., ., ., ., ., ., .] ) )
);
nc = ncols(dt);
for (i = nc, i >= 12, i--,
if (column(dt, i)[2] == 0,
show(i);
dt << delete columns(i);
);
);