这是另一个问题,我觉得有一个简单的答案,但我找不到它。我循环遍历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
只是完全停止了宏。
答案 0 :(得分:2)
试试这个:
Range(Cells(2, 4), Cells(Rows.Count, 4).End(xlUp)).Select
Dim rCell as Range, 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)
Dim xrows as Long, i as Long
xrows = Selection.Rows.Count
For i = xrows to 1 Step -1
Set rCell = Selection.Cells(i,1)
If rCell.Value <> "" Then
If rCell.Value And rCell.Offset(, 5) < ConvertedDate And rCell.Offset(, 5) <> "" Then rCell.EntireRow.Delete
If rCell.Value < ConvertedDate And rCell.Offset(, 5) = "" Then
If rCell.Offset(, 6) < ConvertedDate And rCell.Offset(, 6) <> "" Then rCell.EntireRow.Delete
If rCell.Offset(, 7) < ConvertedDate And rCell.Offset(, 7) <> "" Then rCell.EntireRow.Delete
End If
End If
Next i
不确定您是否希望所有人都EntireRow.Delete
,但您可以轻松将其切换回来。
答案 1 :(得分:2)
见下文,我更新并更改了一些重复条件。最好的两种方法是将数据添加到变量数组中,处理然后删除,或者在注释中添加标记,过滤然后批量删除时提及brettdj。我更喜欢以下,因为它可以很好地扩展,并且是了解其他数据操作的好习惯。没有测试为没有基于它的模板。见下文:
Dim data() As Variant
Dim i As Double
Dim deleteRows As Range
Dim sht As Worksheet
Dim theAnswer As String
Dim ConvertedDate As Date
Set sht = Sheet1
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)
data = sht.Range(Cells(2, 4), Cells(Rows.Count, 4).End(xlUp)).Resize(, 8)
For i = 1 To UBound(data, 1)
If (data(i, 1) <> vbNullString) Then
If data(i, 1) <> vbNullString And data(i, 6) < ConvertedDate And data(i, 6) <> vbNullString Then
If (deleteRows Is Nothing) Then
Set deleteRows = sht.Rows(i + 1)
Else
Set deleteRows = Union(deleteRows, sht.Rows(i + 1))
End If
ElseIf data(i, 1) < ConvertedDate And data(i, 7) <> vbNullString And data(i, 8) <> vbNullString Then
If data(i, 7) < ConvertedDate Or data(i, 8) < ConvertedDate Then
If (deleteRows Is Nothing) Then
Set deleteRows = sht.Rows(i + 1)
Else
Set deleteRows = Union(deleteRows, sht.Rows(i + 1))
End If
End If
End If
End If
Next i
deleteRows.Delete Shift:=xlUp