Be the first user to complete this post

  • 0
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:

  1. VBA-Excel: WorkBook.Save Method
  2. VBA-Excel: User Forms
  3. VBA-Excel: Create worksheets with Names in Specific Format/Pattern.
  4. VBA Excel - Cells, Ranges and Offset: Refer Range by using A1 Notations
  5. VBA-Excel: Get all the WeekDays or Working days in Specified Date Range, (excluding Satudays and Sundays)