it's probably trivial, but i can't get rid of that first row of my filtered range.
i have this statement:
Set RngVis = ActiveSheet.AutoFilter.Range.Cells.SpecialCells(xlCellTypeVisible)
which correctly gives me only the visible filtered cells, but includes the variable names row, which i don't want.
(gives me this range, for example - $A$3:$Z$3,$A$12:$Z$17,$A$55:$Z$74 - but i'd like to drop the 3rd row)
i tried RngVisNoHeaders = RngVis.Offset(1, 0) but it just shifts everything down by one, i.e. row 3 becomes 4, etc..
thanks,
len
i have this statement:
Set RngVis = ActiveSheet.AutoFilter.Range.Cells.SpecialCells(xlCellTypeVisible)
which correctly gives me only the visible filtered cells, but includes the variable names row, which i don't want.
(gives me this range, for example - $A$3:$Z$3,$A$12:$Z$17,$A$55:$Z$74 - but i'd like to drop the 3rd row)
i tried RngVisNoHeaders = RngVis.Offset(1, 0) but it just shifts everything down by one, i.e. row 3 becomes 4, etc..
thanks,
len