Multipal Entries

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a table with Engineer1 and Engineer2, these are pointing to a
tblEngineer. Having already created a query using a combo, to see which
engineer have attended which "site".

My issue is that when i run the query it only looks at engineer1, how would
i be able to get the query to look in both engineer1 and engineer2.
 
It would have helped if you had provided your current sql. You can normalize
your table by creating a union query like:

SELECT FieldX, FieldY, Fieldetc, Engineer1 as Engineer
FROM tblNoNameGiven
UNION ALL
SELECT FieldX, FieldY, Fieldetc, Engineer2
FROM tblNoNameGiven;

You can then query the union query for a particular engineer or whatever.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top