ms access データベースを使用していて、2 つの日付の間のデータを取得したい
stdate= starting date
edate=end date
以下のコードを使用しています。
Private Sub Label3_Click()
DataGrid1.Visible = True
Dim stdate As Date
Dim edate As Date
Format = stdate("mm/dd/yyyy")
Format = edate("mm/dd/yyyy")
stdate = Text1.Text
edate = Text2.Text
Adodc1.RecordSource = "SELECT * FROM sales_info WHERE date BETWEEN &stdate& and &edate& "
Adodc1.Refresh
End Sub
私が取得しているエラーは次のとおりです。
syntax error expected array(in format statement)
missing operator in query expression date.
ありがとう
助けてください
私は初心者です