ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Delete Date Macro (https://www.excelbanter.com/excel-programming/424408-delete-date-macro.html)

Workbook

Delete Date Macro
 
Any ideas about how to create a code so that every time the word €śDate€ť
appears in a cell in column A, the row that €śDate€ť exists in will be deleted?


Per Jessen

Delete Date Macro
 
Sub DeleteDateInA()

FirstRow = 2 'Headings in row 1
LastRow = Range("A" & Rows.Count).End(xlUp).Row
For r = LastRow To FirstRow Step -1
If Range("A" & r).Value = "Date" Then ' Date is the only word in the
cell
'If Range("A" & r).Value like "*Date*" Then ' * Allow text before and
after Date
Rows(r).Delete
End If
Next
End Sub

Hopes this helps

---
Regards,
Per

"Workbook" skrev i meddelelsen
...
Any ideas about how to create a code so that every time the word €śDate€ť
appears in a cell in column A, the row that €śDate€ť exists in will be
deleted?




All times are GMT +1. The time now is 03:03 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com