I delete rows based on the date in a column.
The dataset is around 85,000 rows and the macro can take from 30s to 5m+ with constant freezing.
I'm not sure if this is due to poorly written code or the size of the dataset.
Sub DeleteCurrentPeriod()
    Dim ws As Worksheet
    Application.ScreenUpdating = False
    Set ws = ThisWorkbook.Worksheets("Transaction list by date")
    ws.Activate
  
    On Error Resume Next
    ws.ShowAllData
    On Error GoTo 0
  
    'Insert column, autofill formula for range
        
    Sheets("Transaction list by date").Select
    Columns("AR:AR").Select
    Selection.Insert Shift:=xlToRight, CopyOrigin:=xlFormatFromLeftOrAbove
    Range("AR2").Select
    ActiveCell.FormulaR1C1 = "=IFERROR(IF(RC[-1]>CONTROL!R20C7,""Y"",""""),"""")"
         Selection.AutoFill Destination:=Range("AR2:AR100000"), Type:=xlFillDefault
    
    'Filter on new column for cells matching criteria
    
    ws.Range("$A$1:$BE$100000").AutoFilter Field:=44, Criteria1:="Y"
  
    'Delete rows with matching criteria
  
    On Error Resume Next
    Application.DisplayAlerts = False
    ws.Range("$A$2:$BE$100000").SpecialCells(xlCellTypeVisible).Delete
    Application.DisplayAlerts = True
    On Error GoTo 0
  
    'Delete added column and remove filter
    
    Columns("AR:AR").Select
    Selection.Delete Shift:=xlToLeft
    On Error Resume Next
    ws.ShowAllData
    On Error GoTo 0
    
    Application.ScreenUpdating = True
    Application.Goto Reference:=Range("A1")
    
End Sub
 
     
     
    