D
dohernan via AccessMonster.com
When I use the "If, Then" below the Report/letter pops open, but has
information from the last record, alphabetically.
how do I get it to use the Current Record?
Thanks.
Private Sub Need_Auth__AfterUpdate()
If Me.[NeedAuth] = "y" Then
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
DoCmd.OpenReport "AuthorizationNeededL", acPreview
End If
End Sub
information from the last record, alphabetically.
how do I get it to use the Current Record?
Thanks.
Private Sub Need_Auth__AfterUpdate()
If Me.[NeedAuth] = "y" Then
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
DoCmd.OpenReport "AuthorizationNeededL", acPreview
End If
End Sub