Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi all,
I have the following: Column D data area is defined as "My List" No I filter the sheet Field 4 (Mylist) and returns the data based on crieteria how can I select only those filtered items less Label to copy to other column?? TIA Soniya |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Somiya,
Use SpecialCells with the visble cells qualifier Range("myList").SpecialCells(xlCellTypeVisible).Co py Destination:=Range("M1") Change M1 to suit -- HTH Bob Phillips "Soniya" wrote in message ... Hi all, I have the following: Column D data area is defined as "My List" No I filter the sheet Field 4 (Mylist) and returns the data based on crieteria how can I select only those filtered items less Label to copy to other column?? TIA Soniya |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Soniya,
if cells below list are blank anyway shift down 1 row before specialcells method Range("myList").Offset(1). _ SpecialCells(xlCellTypeVisible).Copy _ Destination:=Range("M1") else you'll have to both offset and resize Range("myList").Offset(1). _ Resize(Range("MyList").Rows.Count - 1). _ SpecialCells(xlCellTypeVisible).Copy _ Destination:=Range("M1") keepITcool < email : keepitcool chello nl (with @ and .) < homepage: http://members.chello.nl/keepitcool "Soniya" wrote: Hi Bob, Thanks for your help, but this will thake the column heading too.. i want to avoid column label?? How can I avoid tope row of the column.. TIA Soniya -----Original Message----- Somiya, Use SpecialCells with the visble cells qualifier Range("myList").SpecialCells(xlCellTypeVisible).Co py Destination:=Range("M1") Change M1 to suit -- HTH Bob Phillips "Soniya" wrote in message ... Hi all, I have the following: Column D data area is defined as "My List" No I filter the sheet Field 4 (Mylist) and returns the data based on crieteria how can I select only those filtered items less Label to copy to other column?? TIA Soniya . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Validation; add items to named range | Excel Discussion (Misc queries) | |||
items filtered | Excel Discussion (Misc queries) | |||
Selecting specific row/column from a named range | Excel Worksheet Functions | |||
counting filtered items | Excel Worksheet Functions | |||
named range, data validation: list non-selected items, and new added items | Excel Discussion (Misc queries) |