ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Excel query insert (https://www.excelbanter.com/excel-programming/441755-excel-query-insert.html)

ranjith r

Excel query insert
 
I want to insert a new row into excel sheet after reading from few text boxes in my C# windows application.
The sheet has already few lines so I need to find the last row to be written and insert m y data.
i found the last row from the below code

Microsoft.Office.Interop.Excel.Range rowrange = workSheet.Cells.Find("*", System.Reflection.Missing.Value,
System.Reflection.Missing.Value, System.Reflection.Missing.Value, Microsoft.Office.Interop.Excel.XlSearchOrder.xlByR ows, Microsoft.Office.Interop.Excel.XlSearchDirection.x lPrevious, false, System.Reflection.Missing.Value, System.Reflection.Missing.Value);

Now i need to insert the data from my text boxes into the next row on click of a button




Submitted via EggHeadCafe - Software Developer Portal of Choice
Get Silverlight 4 Installed: Tips and Tricks
http://www.eggheadcafe.com/tutorials...4-install.aspx

joel[_905_]

Excel query insert
 

Use offset to get next cell

rowrange.offset(1,0)


--
joel
------------------------------------------------------------------------
joel's Profile: http://www.thecodecage.com/forumz/member.php?u=229
View this thread: http://www.thecodecage.com/forumz/sh...d.php?t=196332

http://www.thecodecage.com/forumz



All times are GMT +1. The time now is 06:27 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com