ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   code that searches for current date (https://www.excelbanter.com/excel-programming/398605-code-searches-current-date.html)

J.W. Aldridge

code that searches for current date
 
tyring to get a code that searches column F for the very first
instance of the current date (i.e. 10/3) and stops on that cell


Bernie Deitrick

code that searches for current date
 
Range("F:F").Find(Format(Now(), Range("F2").NumberFormat), , xlValues).Select

This assumes that the formatting is consistent down column F, and F2 contains a date...

HTH,
Bernie
MS Excel MVP


"J.W. Aldridge" wrote in message
ups.com...
tyring to get a code that searches column F for the very first
instance of the current date (i.e. 10/3) and stops on that cell




Gary''s Student

code that searches for current date
 
Sub findit()
n = Cells(Rows.Count, 6).End(xlUp).Row
td = Date
For i = 1 To n
If Cells(i, 6).Value = td Then
Cells(i, 6).Select
Exit Sub
End If
Next
End Sub

--
Gary''s Student - gsnu200748


"J.W. Aldridge" wrote:

tyring to get a code that searches column F for the very first
instance of the current date (i.e. 10/3) and stops on that cell



Bob Phillips

code that searches for current date
 
On Error Resume Next
iRow = Application.Match(Date,Columns(6),0)
On Error Goto 0
If iRow 0 Then
...

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"J.W. Aldridge" wrote in message
ups.com...
tyring to get a code that searches column F for the very first
instance of the current date (i.e. 10/3) and stops on that cell





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

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