Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi All,
I created a unique range with this piece of code: Dim allkodok As Range, osszsor As Range darab = Columns("B:B").End(xlDown).Row Set osszsor = Range("B1:B" & darab) osszsor.AdvancedFilter Action:=xlFilterInPlace, Unique:=True Set allkodok = osszsor.SpecialCells(xlVisible) My problem is that range "allkodok" contains the header row (cell B1) and I want to exclude it. I tried Set allkodok = allkodok.Offset(1, 0).Resize(allkodok.Count - 1) but it fails. Please help! Regards, Stefi |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
unique records in specified range | Excel Worksheet Functions | |||
How do I get the unique values from a range? | Excel Worksheet Functions | |||
Highest Value from Unique range | Excel Worksheet Functions | |||
New Range containing Unique names only | Excel Programming | |||
Unique numbers in a range | Excel Programming |