Hi
point taken I should have included the database :-(
Simply there are three tables
one for Parish
One for Births
these are in a relationship based on 1 to many as one parish can have many births
The third is an import from the original spreadsheet
I'm trying to append the contents of the" tbl_westburyBaptismsOne" to the other two tables whilst creating / retaining referential integrity between keys.
The reason why there is a field in tbl_Parish called form name is that I intend to use the access property of using the 1st field as in
Code:
Private Sub Search_Click()
If Me.Select_Parish <> "" Then DoCmd.OpenForm "frm_" & Replace(Me.Select_Parish, " ", "")
End Sub
No applicable to my current issue but thought I'd mention it.
I will have over the next few months 54 parishes each with up to 10 spreadsheets so I'm trying to get my methodology right with just one to start with and from there set up a trial form sequence.
IN case anyone wonders why this is the format it is a transcription of a 1600-1700 church birth register typed into a spreadsheet by hand ( not by me)
Thanks
Ian