Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

hello .Can anybody help me with the sql syntax of searching

Status
Not open for further replies.

marre

Computer
Joined
Jan 29, 2002
Messages
1
Location
FI
Ihave following problem.
in cells i have values
critdate = Sheets("työ").Range("b1").Value
critkonesk = Sheets("työ").Range("B2").Value
I suppose to use "dao" and want to get information from access database
I know that access fields have many sorts of format (txt,date,counter ,memo ,,,)
i succed with text format "critkonesk"
but the problem is "critdate"
tell me the syntax for such a matter

Set rs = db.OpenRecordset _
(" SELECT [KONE-pKORTTI].* " _
& "FROM [KONE-pKORTTI]" _
& "WHERE ([KONE-PKORTTI].konesk LIKE '" & critkonesk & "') " _
& "AND ([KONE-PKORTTI].PVM LIKE '# critdate #' ) " _
& " ")

i am very greatfull for help
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top