Hello All,
What I am trying to do is when I choose a value in a drop down this will populate the the next field called "cutoff" based off of the drop down.
Is there a easy way to do this in VBA? I tried this but it is not working
Any Ideas?
What I am trying to do is when I choose a value in a drop down this will populate the the next field called "cutoff" based off of the drop down.
Is there a easy way to do this in VBA? I tried this but it is not working
Code:
Private Sub Cutoff_AfterUpdate()
Dim varX As Variant
varX = DLookup("[Cutoff]", "qMachGroup", _
"[Machine Size]= " & Forms!Product!Combo76)
End Sub
Any Ideas?