Mind you this code is untested
Sub amened()
Application.ScreenUpdating = 0
Dim rFind As Range, sAddr$, Searchfor As Date, ws As Worksheet
Searchfor = "2013/07/25"
For Each ws In ThisWorkbook.Worksheets
If ws.Name <> "Sheet1" Then 'if you want to exclude any sheet from the loop
With ws.Range("A:A")
Set rFind = .Find(CDate(Searchfor), .Cells(.Cells.Count), xlValues, xlWhole)
If Not rFind Is Nothing Then
sAddr = rFind.Address
Do
rFind.Offset(, 1).Copy rFind.Offset(1, 1)
Set rFind = .FindNext(rFind)
Loop While rFind.Address <> sAddr
sAddr = ""
End If
End With
End If
Next ws
Application.ScreenUpdating = True
End Sub
Bookmarks