Everyone,
Hopefully you can help me with a little problem I am having.
I have a need to limit the records shown in a form by a few different criteria. I also need these records to be editable.
I am capable of building the query to show the records but when I include one query I need to get a limiting value from (orders greater than 1 per day, calculated value in that query) the records are no longer editable. I believe this is because the final query I am adding is non-editable because it has some calculated fields in it (also has "Group By" clauses).
Does anyone have an advice as to how to limit the values on the form while still keeping them editable if I need to use values from that query as part of the limiting criteria? The only method I can currently think of is to save the results of the query that isn't updateable into a table and link that into the query for the form since it should then be updateable.
Hopefully you can help me with a little problem I am having.
I have a need to limit the records shown in a form by a few different criteria. I also need these records to be editable.
I am capable of building the query to show the records but when I include one query I need to get a limiting value from (orders greater than 1 per day, calculated value in that query) the records are no longer editable. I believe this is because the final query I am adding is non-editable because it has some calculated fields in it (also has "Group By" clauses).
Does anyone have an advice as to how to limit the values on the form while still keeping them editable if I need to use values from that query as part of the limiting criteria? The only method I can currently think of is to save the results of the query that isn't updateable into a table and link that into the query for the form since it should then be updateable.
Comment