这是另一个问题,我觉得有一个简单的答案,但我没有找到它。我正在遍历 D 列中的每个单元格并查找特定日期(来自用户输入),并基于该单元格的日期和一些相应单元格中的日期,我正在更改行的颜色。
我不想为行着色,而是希望能够将其删除。
这是我当前为这些行着色的代码:
Range(Cells(2, 4), Cells(Rows.Count, 4).End(xlUp)).Select
Dim rCell, otherCell As Range
Dim TheAnswer$
Dim ConvertedDate#
TheAnswer = InputBox("In M/D/YY format, enter the first day of the month for which this report is being run." & _
vbCr & vbCr & "For example, you would enter ""12/1/2012"" for the December 2012 report.", "Enter Date M/D/YY")
ConvertedDate = CDate(TheAnswer)
For Each rCell In Selection
If rCell.Value <> "" Then
If rCell.Value And rCell.Offset(, 5) < ConvertedDate And rCell.Offset(, 5) <> "" Then rCell.EntireRow.Interior.Color = RGB(255, 102, 0)
If rCell.Value < ConvertedDate And rCell.Offset(, 5) = "" Then
If rCell.Offset(, 6) < ConvertedDate And rCell.Offset(, 6) <> "" Then rCell.EntireRow.Interior.Color = RGB(255, 102, 0)
If rCell.Offset(, 7) < ConvertedDate And rCell.Offset(, 7) <> "" Then rCell.EntireRow.Interior.Color = RGB(255, 102, 0)
End If
End If
Next rCell
当我替换rCell.EntireRow.Interior.Color = RGB(255, 102, 0)
为rCell.EntireRow.Delete
我得到错误。如果我单步执行代码,我可以看到它确实删除了第一行,但是在下一行出现错误。
我显然有多个“If Then”语句,但是如果满足第一个“If Then”条件并且该行被删除,它应该继续移动到下一个单元格。在我看来,它仍在尝试检查已删除的行。我绝对不是 Excel VBA 专家,但我认为应该在rCell.EntireRow.Delete
告诉它移动到下一个单元格的部分之后添加一些内容。我尝试添加Next rCell
,但错误出来了。 Exit For
完全停止宏。