Is there any way to allow me to edit information in a union query? In other words can I update information from within this query? For some reason it doesn allow me to change any information in the datasheet view of the query.
[HTML]SELECT [Last Name], [First Name], [e-mail]
FROM [From Old List]
WHERE [E-MAIL] is not null
UNION SELECT [Last Name], [First name], [e-mail]
FROM [participants]
WHERE [E-MAIL] is not null
ORDER BY [last name];[/HTML]
[HTML]SELECT [Last Name], [First Name], [e-mail]
FROM [From Old List]
WHERE [E-MAIL] is not null
UNION SELECT [Last Name], [First name], [e-mail]
FROM [participants]
WHERE [E-MAIL] is not null
ORDER BY [last name];[/HTML]
Comment