RYankowitz
Programmer
- Jun 13, 2000
- 27
I have a need to perform some actions when the value in a calculated field changes. As far as I can tell, none of the usual suspects (Change, BeforeUpdate, AfterUpdate, etc.) will fire as a result of a change to a calculated field.<br><br>Normally, this wouldn't be a problem, as the field which is changed by the user (which in turn cause the calculated field's value to change) could trigger the event. But...<br><br>...that field is contained in a sub-form. This complicates things. The only event I've been able to use is the Exit event for the sub-form. That brings me grief because it prevents the user from moving the main form from record to record, unless he clicks outside the sub-form.<br><br>I cannot (or don't want to) use the Current event, as it triggers only upon entering a new record. I need the actions to occur immediately upon changing the calculated field, so as to give immediate feedback to the user.<br><br>BTW, I'm using Access 2000.<br><br>Ideas? Thanks...