How to carry forward Combo Selection to new record in form?

Ariful Islam

New member
Local time
Today, 22:08
Joined
Nov 21, 2017
Messages
8
I want to carry forward Combo Selection to new record in form, I used various method, but problem is when i select from Combo after update event doesn't work. Can anybody please solve it?
 

Attachments

Here is how I managed it in an early DB of mine

Code:
Private Sub Date_ID_AfterUpdate()
    If Me.chkCopy Then
        Me![Date_ID].DefaultValue = """" & Me![Date_ID].Value & """"
    End If
End Sub

Me.chkCopy is a checkbox I use to indicate I want to copy this and other combo values for the new record.

HTH
 
Same as Gasman but on before uodate and current event if the form
 

Attachments

Little more problem, when i click on ''New (blank) record'' department name keep carry forward but "PassMark" does not change with respect to "Department". Why?
 

Users who are viewing this thread

Back
Top Bottom