Hi @coool sweet ,
No need for the vb.net
It is possible to use Microsoft ACE OLEDB provider to retrieve data from MS Excel file.
Regular SSIS OLEDB Source in DFT.
You can construct the T-SQL statement dynamically by modifying two parts:
- Database
- Sheet
SQL
SELECT *
FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0',
'Excel 12.0 Xml; HDR=NO; IMEX=1;
Database=c:\Users\ykhab\OneDrive\Documents\dada.xlsx',
[Sheet1$]);