rainman89
I cant find the any key..
- Local time
- Today, 12:59
- Joined
- Feb 12, 2007
- Messages
- 3,013
Hi all,
i tried to create a filter for a user to see the information that they have entered on that particular day. they click a button and it will sort by their ID number and the date.. i have the ID portion working properly, since it was easily done with the button wizard(wish it was all that simple) but i wanted to add the date portion too it. i tried
but as u may be able to tell i am getting a type mismatch.. can date not be stored as a string?
i tried to create a filter for a user to see the information that they have entered on that particular day. they click a button and it will sort by their ID number and the date.. i have the ID portion working properly, since it was easily done with the button wizard(wish it was all that simple) but i wanted to add the date portion too it. i tried
Code:
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "DARview"
stLinkCriteria = "[employeeID]=" & Me![employeeID] And "[dateAdded]=" & "#" & Me![dateAdded] & "#"
DoCmd.OpenForm stDocName, , , stLinkCriteria