Sub DeleteFileStr()
Dim fldrPath As String
Dim fileStr As String
Dim filePath As String
Dim file As String
fldrPath = "C:\Your\Folder\Path\" ' make sure to include '\' at the end
fileStr = "(Report Date 11.14.2024)"
file = Dir(fldrPath & "*.*")
Do While file <> ""
If InStr(file, fileStr) > 0 Then
filePath = fldrPath & file
Kill filePath
End If
file = Dir
Loop
End Sub