Hello Group. I am inserting rows in a worksheet using c# I use the method from here: http://code.google.com/intl/da/apis/spreadsheets/data/2.0/developers_guide_dotnet.html#CreatingRows
First I do this: ListQuery listQuery = new ListQuery(listFeedLink.HRef.ToString()); ListFeed listFeed = service.Query(listQuery); To get the header names from an existing row. But the above code, reads every line in the worksheet, and thats not good if the worksheet contains hundreds off rows. How can I insert a new row, without having to read the entire worksheet ? Best regards, Anders Both Denmark.
