I am not aware of being able to input just a specified list of columns from an Excel spreadsheet. (but I am not an Excel expert). However, if you place this JSL as the first statements after reading in the spreadsheet it will delete the unwanted columns.
Names Default To Here( 1 );
dt = Current Data Table();
dt << delete columns(index(5,ncols(dt)-5));
Jim