Select ActiveCell's range : ActiveCell « Excel « VBA / Excel / Access / Word






Select ActiveCell's range

 
Sub SelectCurrentRegion()
    ActiveCell.CurrentRegion.Select
End Sub

 








Related examples in the same category

1.Check the existence of ActiveCell
2.Moves the active cell up two rows (RowOffset:=-2) and four columns to the right (ColumnOffset:=4):
3.Entering Text in the Current Cell
4.Take the current text value, and add the message "INVALID: " before the text
5.Entering a Formula in a Cell
6.Use all the ordinary numeric operators, like +, -, /, *, and ^.
7.Moving to Other Cells
8.Move to the new cell, you need to use the Activate or Select method
9.Get the address of ActiveCell
10.Activate Change
11.Select active cell and up to the end
12.Select ActiveCell and cells to its Right
13.Select ActiveCell and cells to its Left
14.Use ActiveCell.SpecialCells(xlLastCell)
15.Use ActiveCell.Offset to move the curren selection
16.Move the active cell by using ActiveCell.Offset
17.Swap Text With Cell On Right
18.Copy the value from the variable into the cell on the right.
19.If the value of the active cell is too big, change it
20.Use if, ElseIf and Else with ActiveCell
21.Repeating Actions with a Loop
22.Accesses the PROPER( ) function through the Application.WorksheetFunction object.
23.Do-While loop with ActiveCell
24.Use Do Loop While to change ActiveCell value
25.Do-Until loop and IsEmpty
26.a Do-Loop Until loop with IsEmpty
27.Uses the EntireColumn property, which returns a Range object that consists of a full column:
28.Select Current Region
29.Select Active Column
30.Select Active Row
31.Activate Next Blank Down
32.Activate Next Blank To Right
33.Select First To Last In Row
34.Select First To Last In Column
35.Go to the Max
36.Toggles text wrap alignment for selected cells
37.Store the location of the active cell and then return it to the stored location
38.Working with the Region around the Active Cell