I have a combo box in which you can choose the status of a task (not yet started, in progress, finished).
When the status is set to "finished" I want to insert a value that I calculated using a query into another field of the form (I want to use the BeforeUpdate event for this).
What I don't know is how I describe the field of the query that I want to get the value from in the following if...then statement:
If Status = "Finished" Then txtTimeTaken =
Thanks!
When the status is set to "finished" I want to insert a value that I calculated using a query into another field of the form (I want to use the BeforeUpdate event for this).
What I don't know is how I describe the field of the query that I want to get the value from in the following if...then statement:
If Status = "Finished" Then txtTimeTaken =
Thanks!