Hi
not sure what direction to go in with this issue
I have two tables in a relationship
If I create a query
[CODE]]SELECT tblDeceased.Mlink, tblDeceased.Plot, tblDeceased.GraveNo, tblDeceased.Forenames, tblDeceased.Surname, tblDeceased.Inscription, tblMemorial.Mlink, tblMemorial.Inscription
FROM tblMemorial INNER JOIN (tblDeceased INNER JOIN tblJoin ON tblDeceased.GraveID = tblJoin.fkGraveID) ON tblMemorial.MemorialID = tblJoin.fkMemorialId;[/CODE
then as I would expect the query shows all records
It's from this point on I get confused
I want to create an editable table from that query
where all the records are shown in datasheet view
And I want to be able to filter/search by surname or Mlink
can't seem to be able to figure out how to do it.
Appreciate any hints
thanks
Ian