P
Paul B.
I need help building a link criteria....here is what I have:
Dim stLinkCriteria AS String
stLinkCriteria = "[VehicleNumber]='" & Me![VehicleNumber] AND_
"[DispositionDate]=<" & Me![txtStartDate] OR "[DispositionDate]=<"_
& Me![txtEndDate]'
txtStartDate and txtEndDate are in Short Date format, chosen from a popup
calendar.
What I am trying to do is search through the tblDispositions and find all
the dispositions that match [VehicleNumber] between [txtStartDate] and
[txtEndDate].
Thanks in advance....
Dim stLinkCriteria AS String
stLinkCriteria = "[VehicleNumber]='" & Me![VehicleNumber] AND_
"[DispositionDate]=<" & Me![txtStartDate] OR "[DispositionDate]=<"_
& Me![txtEndDate]'
txtStartDate and txtEndDate are in Short Date format, chosen from a popup
calendar.
What I am trying to do is search through the tblDispositions and find all
the dispositions that match [VehicleNumber] between [txtStartDate] and
[txtEndDate].
Thanks in advance....