How to select used cells and range in Excel quickly?

This article focuses on how to select used cells with content and select used ranges in active worksheet quickly in Microsoft Excel.

Select used cells with content in active worksheet with Find command

Select used range in active worksheet with shortcut keyboards

Select used cells and ranges in active worksheet with VBA

Kutools for Excel: 120 Cool Tools and Advanced Features for Excel 2013, 2010 and 2007. Read more...
Office Tab: Enable Tabbed Editing and Browsing in Office, Just Like Chrome, Firefox, IE 8/9/10. Read more...
Classic Menu for Office: Bring Classic Menus and Toolbars of Office 2003/XP/2000 Back to Office 2007, 2010 and 2013. Read more...

arrow blue right bubble Select used cells with content in active worksheet with Find command

Hot
Amazing! Using Tabs in Excel like Firefox, Chrome, Internet Explore 10!

Learn more Free download

Sometimes you may want to find out and select all used cells with content in active worksheet, but not blank cells. You can do it with following steps:

Step 1: Click Home > Find & Select > Find to open the Find and Replace dialog box. You can also open this Find and Replace dialog box with pressing the Ctrl + F keys together.

Step 2: In the Find What: box, enter the * symbol, and click the Find All button.

doc-select-uesd-cells-range1

Step 3: Now there are numerous searching results are listed at the bottom of this dialog box. Press the Ctrl + A keys to select all searching results.

doc-select-uesd-cells-range2

Now all cells with content in active worksheet are selected at once. See the following screenshot:

doc-select-uesd-cells-range3


arrow blue right bubble Select used range in active worksheet with shortcut keyboards

You can select used ranges in active worksheet with shortcut keyboards quickly. Just select the first Cell A1 in active worksheet, and press the Ctrl + Shift + End keys together, then it will select the used range at once.

doc-select-uesd-cells-range4


arrow blue right bubble Select used cells and ranges in active worksheet with VBA

VB macro can help you select used cells and ranges in active worksheet quickly too.

Step 1: Hold down the ALT + F11 keys, and it opens the Microsoft Visual Basic for Applications window.

Step 2: Click Insert > Module, and paste the following macro in the Module Window.

Sub SelectActualUsedRange()
Dim FirstCell As Range, LastCell As Range
Set LastCell = Cells(Cells.Find(What:="*", SearchOrder:=xlRows, _
SearchDirection:=xlPrevious, LookIn:=xlValues).Row, _
Cells.Find(What:="*", SearchOrder:=xlByColumns, _
SearchDirection:=xlPrevious, LookIn:=xlValues).Column)
Set FirstCell = Cells(Cells.Find(What:="*", After:=LastCell, SearchOrder:=xlRows, _
SearchDirection:=xlNext, LookIn:=xlValues).Row, _
Cells.Find(What:="*", After:=LastCell, SearchOrder:=xlByColumns, _
SearchDirection:=xlNext, LookIn:=xlValues).Column)
Range(FirstCell, LastCell).Select
End Sub

Step 3: Press the F5 key to run this macro. Then it selects used range in active worksheet immediately.


Kutools for Excel

More than 120 Advanced Functions for Excel 2013, 2010, 2007 and Office 365.

screen shot

btn read more     btn download     btn purchase