Code:
Private Sub Frame219_AfterUpdate()
If Me.Frame219.Value = 1 Then Me.wasextension2.Value = "Y"
End Sub
Thanks.
Private Sub Frame219_AfterUpdate()
If Me.Frame219.Value = 1 Then Me.wasextension2.Value = "Y"
End Sub
Private Sub Frame219_AfterUpdate()
If Me.Frame219.Value = 1 Then
Me.wasextension2.Value = "Y"
End If
End Sub
Comment