1
我想在一個柱(rng01)來過濾的範圍內通過的值(9列和1400行)如何更快地過濾範圍?
Application.ScreenUpdating = False
db.Rows.Hidden = False
For Each cell In rng01.Cells
If Not cell.Value = "323" Then
cell.EntireRow.Hidden = True
End If
Next cell
Application.ScreenUpdating = True
這工作,但需要約3-4秒。
有沒有更快的方法,請問?
克里斯,它的工作原理,但 'VisibleDropDown:=假' 不工作。 DropDownArrows是可見的。 – Alegro
在Excel 2010中可用。您使用的是什麼版本? –
+1自動篩選器規則 – nutsch