Link to home
Start Free TrialLog in
Avatar of Jagwarman
Jagwarman

asked on

Select a range of cells from the active cell

Select a range of cells from the current/active cell

Would appreciate help on selecting a range of cells.

I am saying:

Range("B:B").Find("*Date*", , xlValues, xlWhole, , , False).Select

Then I want to select all non blank cells from wherever the active cell is.

I have tried

ActiveCell.CurrentRegion.Copy but if there is a blank row it stops at that row.


I use Range(Range("A2"), Cells.SpecialCells(xlCellTypeLastCell)).Select when I know the cell to start from but in this case I don't

Appreciate any assistance.

Thanks
Avatar of Qlemo
Qlemo
Flag of Germany image

How about
   Range("B:B").Find("*Date*", , xlValues, xlWhole, , , False).Copy
ASKER CERTIFIED SOLUTION
Avatar of Rgonzo1971
Rgonzo1971

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Jagwarman
Jagwarman

ASKER

Thanks guys
Qlemo, thanks but yours only seems to copy the cell with the date