Correct way to offset headers while looping through a filtered list?
问题 In the below code i'm trying to use a for loop through a filtered list. Without the offset the loop is going through each field and copying the data multiple times. With the offset its skipping rows. How can I rephrase this to only loop through each row once, and skip the header row? 'Offset Placement Wrong Set rngVisible = activeSheet.AutoFilter.Range.SpecialCells(xlCellTypeVisible).Offset(1, 0) For Each rngCell In rngVisible Rows(rngCell.Row).Select Selection.Copy Sheets(2).Select 'Skip