Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
Using Cells.SpecialCells(xlLastCell).Select will take the Cellpointer to the last cell. How do i get XlFirstCell please? Thanks John |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
try this, but why do you need to select?
Sub gotofirstcellinfilteredrng() Range("b2:b22").SpecialCells(xlVisible).Cells(1, 1).Select End Sub -- Don Guillett SalesAid Software "John" wrote in message ... Hi, Using Cells.SpecialCells(xlLastCell).Select will take the Cellpointer to the last cell. How do i get XlFirstCell please? Thanks John |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Don,
Thank's for a solution. The Filtered data is put into a Listbox. Problem i've got is the Filtered range is including the Field Heading in the Listbox as well, so thought if i could get the first row of Filtered data then i could define the range to use. I guess another way around would be to select the first row in column D (my source data range) as the Column heading in the Listbox. John "Don Guillett" wrote: try this, but why do you need to select? Sub gotofirstcellinfilteredrng() Range("b2:b22").SpecialCells(xlVisible).Cells(1, 1).Select End Sub -- Don Guillett SalesAid Software "John" wrote in message ... Hi, Using Cells.SpecialCells(xlLastCell).Select will take the Cellpointer to the last cell. How do i get XlFirstCell please? Thanks John |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Sum a filtered range | Excel Discussion (Misc queries) | |||
creating a filtered range/named range | Excel Programming | |||
Max Value within filtered range | Excel Programming | |||
traversing through a filtered range based on another filtered range | Excel Programming | |||
filtered range | Excel Programming |