وهذا تعديل آخر
Sub ragab()
On Error Resume Next
Dim sdate As Date, cl As Range
sdate = InputBox("أدخل التاريخ الذى تريد تحديد الخلية المقابلة له")
For Each cl In [A6:A25]
If sdate = cl Then cl.Select: MyArr = MyArr & cl: Exit For
Next
If MyArr = "" Then MsgBox "لاتوجد نتائج لهذا البحث"
End Sub