Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
What is the code to select a column down to the last
populated field? P |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dim rng as Range, icol as Long
icol = 8 set rng = Range(Cells(1,icol),Cells(rows.count,icol).End(xlu p)) rng.Select -- Regards, Tom Ogilvy "Paulg" wrote in message ... What is the code to select a column down to the last populated field? P |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Range("A1").Resize(Cells(rows.count,"A").End(xlDow n).Row,1).Select
-- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "Paulg" wrote in message ... What is the code to select a column down to the last populated field? P |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
VBA: Column Select then Data Select then return to cell A1 | Excel Discussion (Misc queries) | |||
Select stock code depending on description in next column | Excel Worksheet Functions | |||
Code to select range | Excel Discussion (Misc queries) | |||
Select sheet with VB code | Excel Discussion (Misc queries) | |||
Code to Select Row | Excel Programming |