User1724605321 posted
Hi Mohammed,
I am using vb.net and want to upload excel file into sql server. My problem is i want to delete first 5 rows from the excel before reading excel data
If your requirement is not to read the first five rows in excel ,you could get that by:
Select * from [NameOfExcelSheet$A6:E]
Here, as per the above command string, it will read all rows starting from row# ‘6’ and 5 columns from column# ‘A’ to ‘E’
Best Regards,
Nan Yu