我有一个由 4 列和未确定的行组成的列表。我试图只收集 Col B 和 C,其中 Col B 有单词 Jackpot 并将它们复制到新表中。我已经得到了要排序的列表,但是使用 UsedRange,复制了所有行。我如何只复制 B 和 C?
Range("A1").Activate
ActiveCell.EntireRow.Insert
Rows("1:1").Select
Selection.AutoFilter
Selection.AutoFilter Field:=2, Criteria1:="Jackpot"
ActiveSheet.UsedRange.Select
Col A | Col B | Col C | Col D
1 Stuff 1 1
1 MoreStuff 2 1
1 Jackpot 3 1
1 Jackpot 4 1
1 SomeStuff 5 1
1 Jackpot 6 1