I have Form sourced from query with 3 filtered based on Form value.
Filters on form are
1) combo1 value
2) combo 2 value
3) date start and date end
and para meters in query are
As far as these filters are concerned, those are working fine and record is filtered. However if I run query record update command then I get this error.
Quick and dirty sample database attached.
MainForm has two buttons linking to
Form1 based on query (with filters) and has update problem --- filter work fine but update query does not.
Form2 based on query (without filters) and update query has no problem.. works fine.
Click on Save button on Form1 and Form2 to see difference.
Thanks
Filters on form are
1) combo1 value
2) combo 2 value
3) date start and date end
and para meters in query are
Code:
[Forms]![MainFormWithQuery1]![cboCompany]
Between [Forms]![MainFormWithQuery1]![txtStartDate] And [Forms]![MainFormWithQuery1]![txtEndDate]
[Forms]![MainFormWithQuery1]![cboCategory]
As far as these filters are concerned, those are working fine and record is filtered. However if I run query record update command then I get this error.
Quick and dirty sample database attached.
MainForm has two buttons linking to
Form1 based on query (with filters) and has update problem --- filter work fine but update query does not.
Form2 based on query (without filters) and update query has no problem.. works fine.
Click on Save button on Form1 and Form2 to see difference.
Thanks