WHERE (tblTxJournal.T xAcct_ID IN (SELECT TxAcct_ID FROM tblTxAcct)) AND
(DatePart("q",[TxDate])=2) AND
(Year([TxDate])=[Forms]![frmMain]![frmTo]![cbxYear_To]) ...
is this okay, or should the last part be:
[Forms]![frmMain]![frmTo].[Form]![cbxYear_To])
Thanks in advance...
(DatePart("q",[TxDate])=2) AND
(Year([TxDate])=[Forms]![frmMain]![frmTo]![cbxYear_To]) ...
is this okay, or should the last part be:
[Forms]![frmMain]![frmTo].[Form]![cbxYear_To])
Thanks in advance...
Comment