Tables=>Subset
allows you to specify to subset only selected columns. And if you are using JSL, the same option is available
dt = current data table();
dtNew = dt << subset( selected columns(1), selected rows(0));
The above JSL will select only the columns that are selected but will copy all rows.
Jim