I have created an add & deduct point columns to the database. How do I stop it from overwriting the value that is already in there when I put a new value in on the form?
Thanks for your help
Hi,
Thanks but that didn't work. Someone I work with put something very similar to the following code in last night.
Private Sub Addpts_Change()
Dim pts, total As Variant
total = Me.total_points
pts = Me.add_points
total = total + pts
Me.total_points.Value = total...
Hi,
Could someone please help me with this problem.
At work we have a simple point scoring system. I have created a database that includes a total points field. I have then created a form that shows employees records, name employee ID total points etc.
I have added two unbound text boxes to...