Undoing a field

J

John

Hi

How can I undo a single field within a BeforeUpdate event for the field?

Thanks

Regards
 
R

Rui

check if field is 'dirty' (look for changes) and use the command

DoCmd.DoMenuItem acFormBar, acEditMenu, acUndo, , acMenuVer70
 
Top