0
我有錯誤type mismatch
VBA的Excel搜索從範圍和隱藏行值
我在這裏做矩陣,如果行包含"x"
則代碼應該保持連續可見。應該隱藏沒有"x"
的行。從按鈕觸發變量hideEmptyRows
。
If (hideEmptyRows = True) Then
For i = 8 To lastRow
If Range(Cells(i, 3), Cells(i, lastColumn)).value = "x" Then
cell.EntireRow.Hidden = True
End If
Next i
End Ifenter code here
謝謝夥計!隨着你的提示,我繼續工作。 – AratioD
不客氣:) –