J Joe70 Feb 20, 2006 #1 I have an invoice with a combo box choice of Y or N How do I go to a new record when the N is pick from the combo box?
I have an invoice with a combo box choice of Y or N How do I go to a new record when the N is pick from the combo box?
B Brian Bastl Feb 20, 2006 #2 Use the combo's AfterUpdate event procedure to go to a new record. If Me.ActiveControl = "N" Then DoCmd.GoToRecord , , acNewRec End If Brian
Use the combo's AfterUpdate event procedure to go to a new record. If Me.ActiveControl = "N" Then DoCmd.GoToRecord , , acNewRec End If Brian
J Joe70 Feb 20, 2006 #3 Thanks Brian, that work. Use the combo's AfterUpdate event procedure to go to a new record. If Me.ActiveControl = "N" Then DoCmd.GoToRecord , , acNewRec End If Brian Click to expand...
Thanks Brian, that work. Use the combo's AfterUpdate event procedure to go to a new record. If Me.ActiveControl = "N" Then DoCmd.GoToRecord , , acNewRec End If Brian Click to expand...