Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Dear NG:
I know I saw something similar to this here before but I can't find it anymore. I want a macro that selects cells A3 thru N3 and then all cells down the page. Thanks, -Kevin |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Assuming that you want only the populated cells and that Column A is
populated to the end of the data then this should do it... Sub Test() range(cells(rows.count, "A").end(xlUp), range("N3")).Select End Sub -- HTH... Jim Thomlinson "Kevin" wrote: Dear NG: I know I saw something similar to this here before but I can't find it anymore. I want a macro that selects cells A3 thru N3 and then all cells down the page. Thanks, -Kevin |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
For pre-2007:
Sub selectum() Set r1 = Range("A3:N3") Set r2 = Range("A4:IV65536") Union(r1, r2).Select End Sub -- Gary''s Student - gsnu200735 "Kevin" wrote: Dear NG: I know I saw something similar to this here before but I can't find it anymore. I want a macro that selects cells A3 thru N3 and then all cells down the page. Thanks, -Kevin |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank you,
Jim Thomlinson & Gary's Student -Kevin "Kevin" wrote in message ... Dear NG: I know I saw something similar to this here before but I can't find it anymore. I want a macro that selects cells A3 thru N3 and then all cells down the page. Thanks, -Kevin |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Select locked cells | Excel Discussion (Misc queries) | |||
Using formulas to select cells (Ex: Select every nth cell in a col | Excel Discussion (Misc queries) | |||
how do you "select locked cells" w/o "select unlocked cells"? | Excel Discussion (Misc queries) | |||
Why aren't my cells highlighted when I select multiple cells? | Setting up and Configuration of Excel | |||
How do i select different cells to be use in a formula. | Excel Discussion (Misc queries) |