Question : Access - Selecting record with today's date

Hi. I am using the following code to automatically go to the record where the  field "CDate" contains today's date, but it isn't working
Private Sub Form_Load()
    Me.RecordsetClone.FindFirst "[CDate]=" & Date
    If Not Me.RecordsetClone.NoMatch Then
        Me.Bookmark = Me.RecordsetClone.Bookmark
    End If
End Sub

Answer : Access - Selecting record with today's date

Hello murbro,

What data type is CDate?

Anyway...

    Me.RecordsetClone.FindFirst "[CDate]=#" & Date & "#"

Regards,

Patrick
Random Solutions  
 
programming4us programming4us