Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I just want to select a one-column-range starting at the selected cell and stretching out until a row specified in variable x. There has to be a better way than this: Range(ActiveCell.Address & ":" & Left(Replace(ActiveCell.Address, "$", ""), 1) & x).Select What am I missing? Thx Robin |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Sub Test() Dim x As Integer x = 8 Range(ActiveCell.Address).Resize(x, 1).Select End Sub -- Kaak ------------------------------------------------------------------------ Kaak's Profile: http://www.excelforum.com/member.php...fo&userid=7513 View this thread: http://www.excelforum.com/showthread...hreadid=555928 |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Is it possible to have a column of multiple values and by clicking i the cell, it filters on that value -- QuickLearne ----------------------------------------------------------------------- QuickLearner's Profile: http://www.excelforum.com/member.php...fo&userid=3548 View this thread: http://www.excelforum.com/showthread.php?threadid=55592 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How can change range to select active rows instead of :=Range("S10 | Excel Discussion (Misc queries) | |||
When entering data into a range of cells, select the entire range. | Excel Discussion (Misc queries) | |||
select range and put range address in variable | Excel Programming | |||
Compare a selected Range with a Named range and select cells that do not exist | Excel Programming | |||
Select Sheet then Select Range | Excel Programming |