作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
每个人!
我有一个沉重的文件,在 A 和 D 列中有不同的值。
现在我想让这个脚本完成以下操作:
Sub RemoveSomeLines()
Dim RemoveRow As Long
RemoveRow = Cells(Rows.Count, "A").End(xlUp).Row
For y = 1 To RemoveRow
If Cells(y, "A").Value = "Option One" And _
Cells(y, "D").Value = "K" Then
Cells(y, "A").EntireRow.Delete
ElseIf Cells(y, "A").Value = "Option Two" And _
Cells(y, "D").Value = "M" Then
Cells(y, "A").EntireRow.Delete
End If
Next y
End Sub
最佳答案
尝试倒退:
For y = RemoveRow To 1 Step -1
关于vba - 删除行 IF AND THEN ELSEIF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32659111/
我是一名优秀的程序员,十分优秀!