Hi,
I'm using Microsoft Jet and ADO.NET to insert rows into an excel file, something like this:
Dim SQL as String
SQL = "insert into tabla1 (F1,F2,F3,F4) values('a',1,'b',2)"
cmd.CommandText = SQL
cmd.ExecuteNonQuery()
where tabla1 is a named range in the excel file. But I want to do the same...