1

我正在尝试在我的电子表格中运行一个方程式,该方程式将通过“I”列并删除从现在起 90 天内没有到期日期的每一行......换句话说,我正在尝试将我的电子表格格式化为只需给我一份清单,列出未来 90 天内到期的所有物品。我放星星的那一行是我难以插入方程的地方。我不知道如何插入方程,但如果它自己在单元格中运行,它看起来像这样 =IF(AND(I11-900),1,0)=1。我会将 Q11 更改为什么,以便在运行方程式时它将应用于 I 列中的每个单元格,而不仅仅是 I 11

Sub DeleteNow()


Dim Firstrow As Long
Dim Lastrow As Long
Dim Lrow As Long
Dim CalcMode As Long
Dim ViewMode As Long


With Application
    CalcMode = .Calculation
    .Calculation = xlCalculationManual
    .ScreenUpdating = False
End With

With Sheets("Copy")
    .Select
    ViewMode = ActiveWindow.View
    ActiveWindow.View = xlNormalView
    .DisplayPageBreaks = False
    Firstrow = .UsedRange.Cells(1).Row
    Lastrow = .UsedRange.Rows(.UsedRange.Rows.Count).Row
    For Lrow = Lastrow To Firstrow Step -1
        With .Cells(Lrow, "I")

            If Not IsError(.Value) Then

                If ******************** Then .EntireRow.Delete

            End If

        End With

    Next Lrow


End With

ActiveWindow.View = ViewMode
With Application
    .ScreenUpdating = True
    .Calculation = CalcMode
End With

End Sub
4

3 回答 3

3

我现在没有 XL,所以可能会有一些语法错误,但这对你来说应该容易得多,而且很容易理解和更新。请注意,我刚刚构建了代码的核心,我把你所有的Application关卡内容都放在了外面。

With Sheets("Copy")

    '.Select -> no need to select anything, you can work right with the object
    ViewMode = ActiveWindow.View
    ActiveWindow.View = xlNormalView
    .DisplayPageBreaks = False

    Dim myCol as Integer
    myCol = 9

    'the below assumes your data sets starts in column A and you want to filter on column I
    .UsedRange.AutoFilter myCol, xlLast90Days 'this "xlLast90Days" is most likely not right, but if you do it manually while recording a macro, you will get the correct syntax

     Dim rngDelete as Range
     On Error Resume Next 'in case there are no visible cells
     Set rngDelete = Intersect(.UsedRange, .UsedRange.Offset(1), .Columns(myCol)).SpecialCells(xlCellTypeVisible) 'assumes first row of usedrange is header row

     'if there are values over 90 delete them
     If not rngDelete is Nothing Then rngDelete.EntireRow.Delete

End With
于 2012-12-18T20:52:16.297 回答
2
Sub deleteRowsWithDateNotIn90Days()
Dim lastRow As Integer
Dim firstRow As Integer
Dim ctr As Integer

Dim currentCell As Range
Dim valueOfIColumn
Dim isWithin90Days As Boolean

lastRow = 17
firstRow = 1

Application.ScreenUpdating = False
With Sheets("Copy")
    For ctr = lastRow To firstRow Step -1
        Set currentCell = .Cells(ctr, 9)
        valueOfIColumn = currentCell.Value
        isWithin90Days = valueOfIColumn >= Date And valueOfIColumn <= (Date + 90)

        If Not isWithin90Days Then
            Debug.Print "deleting row of cell " + currentCell.Address
            currentCell.EntireRow.Delete
        End If
    Next
End With
Application.ScreenUpdating = True
End Sub

编辑:以此为基础开始。
您可以删除宏记录器生成的不必要的代码。

于 2012-12-18T18:55:32.503 回答
0

我认为您要做的是将 For Next 循环更改为 For Each 循环。这样,您可以将每个元素从数组中拉出并对其进行修改,然后将其放回原处。像这样:

'Psuedo code for learing, won't work if used.
Dim gRange as Range 'Generic
Dim testRange as Range

Set testRange = Worksheets("This").Range("Test Column")

For Each gRange in testRange
    If(moreThan90Days)
        gRange.EntireRow.Delete
    End If
Next gRange

如果您需要更多说明,请在 For Next 循环上进行快速谷歌搜索,可能会找到您正在寻找的内容。

于 2012-12-18T18:50:56.713 回答