Be the first user to complete this post
|
Add to List |
VBA-Excel: UsedRange
In VBA-Excel, UsedRange is very effective property when it comes to deal with the excel file which contains data. Right from formatting options of excel sheet to copy pasting the data, getting informations about rows or columns or clearing the data from excel.
As the name clearly states that it talks about all the cells in an Excel which are filled. ( All the Range which is used)
Format:
WorkBook.WorkSheet.UsedRange
Dim mainworkBook As Workbook
Set mainworkBook = ActiveWorkbook
Get the number of Used rows
mainworkBook.Sheets(“Sheet1”).UsedRange.Rows.Count
This will give you the number of Rows which are used.
Clear all the data from the Excel Sheet
mainworkBook.Sheets(3).UsedRange.Clear
Copy the entire data from the Excel Sheet
mainworkBook.Sheets(3).UsedRange.Copy
To know more about copy/paste the data using VBA-Excel click here.
Clear all the contents from the Excel Sheet
mainworkBook.Sheets(1).UsedRange.ClearContents
Clear Border lines from the Excel Sheet
UsedRange.ClearOutline
Wrap Text in Excel Sheet
mainworkbook.Sheets("DummySheet").UsedRange.WrapText = True
Also Read:
- VBA-Excel: Consolidator – Merge or Combine Multiple Excel Files Into One
- VBA Excel - Cells, Ranges and Offset: Refer Range by using A1 Notations
- VBA-Excel: Copy/Paste data - Copy the Entire data from one sheet to another
- Getting Started with Excel Macro
- Excel-VBA : Prevent Changing the WorkSheet Name