If cell in next month need to delete rows in table

Eric Penfold

Active Member
Joined
Nov 19, 2021
Messages
424
Office Version
  1. 365
Platform
  1. Windows
  2. Mobile
This code needs to delete any table rows which are next month. The Dims etc. are correct so i can`t workout why it`s not depleting the next month lines ??


VBA Code:
With tblDailyMail.DataBodyRange
            For Rw = .Rows.Count To 1 Step -1
                For Each Cell In .Range("A2:A" & LRow)
                    intDaysInMonth = Day(DateSerial(Year(Now()), Month(Now()) + 1, 0))
                    For x = 1 To intDaysInMonth
                        If Not Cell = DateSerial(Year(Now()), Month(Now()), x) Then
                            .ListRows(Rw).Delete
                        End If
                    Next x
                Next Cell
            Next Rw
        End With
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Perhaps you could give us some sample data with XL2BB and explain what the code is doing and what it should be doing?

It might also help if you gave us the full code rather than a snippet.
 
Upvote 0
1701767671189.png

List above needs to be only this month figurers so all cells with 01/01/2024 and beyond the rows need to be deleted.
VBA Code:
Option Explicit
Sub Mouthly_DailyMail_Figurers()

    Dim CopyToRange As Range
    Dim PasteToRange As Range
    Dim Rng    As Range
    Dim Cell   As Range
    Dim Rng1   As Range, Rng2 As Range, Rng3 As Range, RngLoop As Range
    Dim LRow   As Long
    Dim wb     As Workbook
    Dim ws     As Worksheet
    Dim swb    As Workbook
    Dim sws    As Worksheet
    Dim pwb    As Workbook
    Dim pws    As Worksheet
    Dim tblDailyMail As Object
    Dim FileToOpen As Variant

    With Application
        .ScreenUpdating = False
        .Calculation = xlManual
        .DisplayAlerts = False
    End With
    
    Set swb = ActiveWorkbook
    Set sws = swb.Sheets("Sheet")
    Set pwb = Workbooks("MyPersonal.xlsb")
    Set pws = pwb.Worksheets("DailyMail")
    FileToOpen = ("S:\SALES\REPORTING\2023\DailyMail.xlsx")
    Workbooks.Open FileToOpen
    Set wb = Workbooks("DailyMail.xlsx")
    Set ws = wb.Worksheets("Daily Mail Update")
    LRow = pws.Cells(Rows.Count, 1).End(xlUp).Row
    Set RngLoop = pws.Range("I2:I" & LRow)
    
    Set Rng1 = sws.Range("A2")
    Set Rng2 = sws.Range("B2")
    Set Rng3 = sws.Range("C2")
    
    With ws
        For Each Cell In RngLoop
            If Cell.Value Like "Total Value*" Then
                Cell.Offset(0, 2).Value = Rng1.Value
            End If
            If Cell.Value Like "*GP%*" Then
                Cell.Offset(0, 2).Value = Rng3.Value
            End If
        Next Cell
        
        Set tblDailyMail = .ListObjects("Daily_Mail_Data")
        For Each Cell In tblDailyMail.ListColumns("Sales").DataBodyRange
            If Not WorksheetFunction.IsText(Cell.Value) Then
                Cell.Value = sws.Range("A2").Value
                Cell.Font.Name = "Arial"
                Cell.Font.Size = 11
                .Range("H35") = Rng1
                .Range("I35") = Rng2
                GoTo CloseDailyMail
            End If
        Next Cell
    End With
    
CloseDailyMail:
    
    Call DailyMail_Chart_Update
    Workbooks("DailyMail.xlsx").Save
'    Workbooks("DailyMail.xlsx").Close
    
    With Application
        .ScreenUpdating = True
        .Calculation = xlAutomatic
        .DisplayAlerts = True
    End With
    
    MsgBox ("Daily Mail Mountly Figurers Updated")
    
End Sub
 
Upvote 0
Found a way of simply filtering the column then deleting next month rows see below. Thought I would let you see it works very well.

VBA Code:
With tblDailyMail.DataBodyRange
        .AutoFilter field:=1, Criteria1:=xlFilterNextMonth, Operator:=xlFilterDynamic
        .SpecialCells(xlCellTypeVisible).Delete
        .AutoFilter.ShowAllData
        End With
 
Upvote 0
Solution

Forum statistics

Threads
1,215,069
Messages
6,122,954
Members
449,096
Latest member
Anshu121

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top