I have had this expression denoting a IDNumber
=[StudentID] & Left([FirstName],1) & Left([LastName],1) &
[InstClID]
Now It has stopped working
Get Runtime Error 2113
This is the code but I get a #Name? in the text box
containing the expression.
Private Sub InstructorPP_DblClick(Cancel As Integer)
Me.IDnumber.Value = InstIDtxt
End Sub
Taking out the FirstName and LastName makes it work but need the initials. It was working.
Any Ideas
=[StudentID] & Left([FirstName],1) & Left([LastName],1) &
[InstClID]
Now It has stopped working
Get Runtime Error 2113
This is the code but I get a #Name? in the text box
containing the expression.
Private Sub InstructorPP_DblClick(Cancel As Integer)
Me.IDnumber.Value = InstIDtxt
End Sub
Taking out the FirstName and LastName makes it work but need the initials. It was working.
Any Ideas