Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Excel Experts,
Simple question. I've been away from VBA for a bit. How do I select the current row. I tried Rows.CurrentRow.Select but that didn't work. Thanks, Alan |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
ActiveCell.EntireRow.Select
Regards, Stefi €˛achidsey€¯ ezt Ć*rta: Excel Experts, Simple question. I've been away from VBA for a bit. How do I select the current row. I tried Rows.CurrentRow.Select but that didn't work. Thanks, Alan |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sub selectcurrentrow()
Rows(ActiveCell.Row).Select End Sub -- Don Guillett SalesAid Software "achidsey" wrote in message ... Excel Experts, Simple question. I've been away from VBA for a bit. How do I select the current row. I tried Rows.CurrentRow.Select but that didn't work. Thanks, Alan |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I forgot to add.
Perhaps you should post your code as it is rarely necessary or desirable to select. ie: Rows(ActiveCell.Row).Copy Range("a23") -- Don Guillett SalesAid Software "achidsey" wrote in message ... Excel Experts, Simple question. I've been away from VBA for a bit. How do I select the current row. I tried Rows.CurrentRow.Select but that didn't work. Thanks, Alan |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro €“ select all cells in current range | Excel Discussion (Misc queries) | |||
Want macro to select current cell | Excel Programming | |||
how to select current range | Excel Programming | |||
Select current region and print | Excel Programming | |||
Select current region less one column | Excel Programming |