Using the Areas Collection to Return a Noncontiguous Range : UsedRange « Access « VBA / Excel / Access / Word






Using the Areas Collection to Return a Noncontiguous Range

 
Sub copy()
    range("A:D").SpecialCells(xlCellTypeConstants, 1).copy range("I1")
End Sub

 








Related examples in the same category

1.Working with the Used Range
2.Loop through all used range
3.Remove extraneous rows and columns and reset the last cell
4.Using the SpecialCells method to select all the blanks in this range is one way to quickly fill in all the blank region cells with the region found above them: