background preloader

Excel

Facebook Twitter

Macaferi's blog: NPOI with Excel Table and dynamic Chart. A reader of the blog called Zip wrote a comment on the post Creating Excel spreadsheets .XLS and .XLSX in C#.

Macaferi's blog: NPOI with Excel Table and dynamic Chart

This is an excerpt from Zip’s comment: … if I add rows using NPOI in C#, rows added under the table won't be automatically included in the table, and my chart is not updated the way I would like it to be. Visual Basic for Applications (VBA) Code Samples for Microsoft Excel. Excel Ranges: Finding the Last Cell in a Range. Back to: Excel VBA .

Excel Ranges: Finding the Last Cell in a Range

Got any Excel/VBA Questions? Excel Help | Find & Return The Last Used Cell On An Excel Worksheet Or Column VBA Function Find the last used cell, before a blank in a Column: Sub LastCellBeforeBlankInColumn() Range("A1").End(xldown).Select End Sub Find the very last used cell in a Column: Sub LastCellInColumn() Range("A65536").End(xlup).Select End Sub Find the last cell, before a blank in a Row: Sub LastCellBeforeBlankInRow() Range("A1").End(xlToRight).Select End Sub Find the very last used cell in a Row: Sub LastCellInRow() Range("IV1").End(xlToLeft).Select End Sub Find the very last used cell on a Worksheet: Sub Demo() Cells.Find(What:="*", After:=[A1], SearchDirection:=xlPrevious).Select End Sub Find the last Row, Column or Cell.