In a cemetery database, I have a table BurialsT which has PK field BurialID, (Autonumber) and a field BurialNumber (Long Integer). BurialNumber increments by using DMax because the numbers MUST be consecutive as they have to match the old paper Burials Register. (I’m not sure whether the Autonumber field is really necessary because the BurialNumber field is required and indexed with no duplicates – advice welcome on that too.)
Table OrderItemsT has its own PK OrderItemID and relates to table BurialsT through FK_BurialID.
I need FK_BurialID to update with the BurialID from the Burials table automatically when records are added via a data entry form. I’d like to do this in the simplest way possible please, preferably without using VBA.. Could anyone advise me please?
Table OrderItemsT has its own PK OrderItemID and relates to table BurialsT through FK_BurialID.
I need FK_BurialID to update with the BurialID from the Burials table automatically when records are added via a data entry form. I’d like to do this in the simplest way possible please, preferably without using VBA.. Could anyone advise me please?
Comment