I have a sub-form displayed in datasheet view that has a record source like this:
SELECT MyTable.*, myFunction(MyTable.id) as my_result FROM MyTable
Where myFunction() is a vba function that makes a call to a MySQL stored procedure.
The problem is that myFunction() is getting called far too often. For example it gets called whenever the focus is moved from column to column within the same record even though the record remains unchanged. Is there any way to stop this from happening?