I have a table which contains a "tracking number" field. After the field is updated I would like a check box to reflect a "true" state. The tracking number field is populated by an import of sorts (ODBC connection to a Fed Ex program). If I update the tracking number field in a form, this works:
Private Sub TrackingNumber_AfterUpdate()
Me![Processed] = True
End Sub
But if the tracking number field is populated straight to the table, it doesn't work.
I just want the order to reflect a "processed" state after a tracking number is no longer null.
Any ideas?
Thanks.
Heather
Private Sub TrackingNumber_AfterUpdate()
Me![Processed] = True
End Sub
But if the tracking number field is populated straight to the table, it doesn't work.
I just want the order to reflect a "processed" state after a tracking number is no longer null.
Any ideas?
Thanks.
Heather