Hello everybody
I'm new user in Access.
I'm trying to create a form and I was wondering if is possible that Microsoft Access to automatically propagate a field called Changed By and in that field to be the File property - Last saved by
No automatic setting, but easy enough to implement if you change data through bound forms.
In the form's After_Update event, add:
Code:
ChangedBy = CurrentUser
That is assuming you have a field called ChangedBy in the table, and you are using a security file (.mdw). If you are identifying your users some other way, replace CurrentUser with whatever is appropriate.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.