BrockLanders
Programmer
Hi, I have the below code, but keep getting an error (Invalid argument, Expected 1) on my execute line.
My Start Date field is a text format (yyyymmdd) and DtTxtBx is picking up the correct value that I type in my form. I think it might have something to do with the >= sign.
Any help would be much appreciated. Thanks
Code:
DtTxtBx = Forms![Form1]![Text13].[Value]
query = "SELECT * FROM qryDates Where [Start Date]>= '" & DtTxtBx & "' order by [ChainName]"
Any help would be much appreciated. Thanks