Hello I\'m trying to translate an Excel file to my dataGridView and it\'s having column name issues because the way the Excel file is formatted, there are two setup cells fo
Just like Thit Lwin has commented. Remove first row before set dt as datasource.
DataRow row = dt.Rows[0]; dt.Rows.Remove(row); techGrid.DataSource = dt;