Skip to main content
How to get only 2 columns from data table that has many columns and create a new data table using that 2 columns?

Define Index? First column: Index 0


Hi @Pratiksha Pawar​ ,

 

If you are fetching data from excel, then that can be achieved by connecting to Excel like it were a database and using a Select Query to fetch the columns you are interested in:

 

SELECT Col1, Col2 FROM FSheet1$$]

 

Kind Regards,

Ashwin A.K


Reply