I have table (tblTest):
Kit Lot InUse
Amp 123 Yes
Amp 456 No
On a form I have:
Kit
Lot
What I would like to do is create an AfterUpdate select statement on the form that pulls the Kit in the table where Inuse = Yes:
but I do not no if that is possible? Thanks.
Kit Lot InUse
Amp 123 Yes
Amp 456 No
On a form I have:
Kit
Lot
What I would like to do is create an AfterUpdate select statement on the form that pulls the Kit in the table where Inuse = Yes:
Code:
Private Sub Text245_AfterUpdate()
If Me.Text225 = "Test" Or Me.Text225 = "Test2" Then
Me.Text245 = SELECT (Kit, tblTest, [Inuse = -1])
End Sub