Sorry - but it would be easier to work through the errors you are getting. The code is extensive only in so far as it has to be applied to each control e.g. text box / combo box etc representing the fields in your tables that you want to monitor. So for each control, create a BeforeUpdate event and insert the code which you will have to adapt.
gblnAddMode is a variable in my application which is used to differentiate between adding new records and editing them. You could use the form property Me.NewRecord instead i.e:
If me.NewRecord = False Then
TrackingID is the primary key field that uniquely identifies the current record.
sTblName is another variable set to the name of the table.
Me.cboConclusion.ControlSource is the current field name.
Me.cboConclusion.OldValue is the original value for the field.
Me.cboConclusion.Value is the new value given to the field by the user.
I am sure you will get the hang of this but you have to adapt the code to your application.
If you have any further problems I am available for the next hour or so.
Rick