how to delete Row of excel sheet in c#
how to delete Row of excel sheet in c#
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sunny SharmaPosted Oct 30, 2013, 12:59 AM
try this line of code:
((Range)wks.Cells[2, 2]).Rows.Delete();
HTH :)