F
Fjordur
Hi,
well I guess the short answer is "you can't"
OK I've got a table A whose records can be linked, or not, to records in
table B and/or C.
I have a single form to show and edit records of A that have no matching
records either in table B or C. It's based on the following query which of
course has left joins:
SELECT A.*
FROM (A LEFT JOIN ON A.ID_A = .ID_A)
LEFT JOIN [C] ON A.ID_A = [C].ID_A
WHERE ((([C].ID_C) Is Null) AND ((.ID_B) Is Null));
The problem is I can't add records from this form. I take it this has to do
with the join, right?
Then how do I deal with this problem? I don't like the idea of having a
button that says "add a record" and goes to another form. Suggestions?
well I guess the short answer is "you can't"
OK I've got a table A whose records can be linked, or not, to records in
table B and/or C.
I have a single form to show and edit records of A that have no matching
records either in table B or C. It's based on the following query which of
course has left joins:
SELECT A.*
FROM (A LEFT JOIN ON A.ID_A = .ID_A)
LEFT JOIN [C] ON A.ID_A = [C].ID_A
WHERE ((([C].ID_C) Is Null) AND ((.ID_B) Is Null));
The problem is I can't add records from this form. I take it this has to do
with the join, right?
Then how do I deal with this problem? I don't like the idea of having a
button that says "add a record" and goes to another form. Suggestions?