(MS Access 2000)
I have a table of text strings, they are reccomendations. I am trying to write a query which will only contain the recommendations that are true. The problem I am having is each recommendation(cell) relates to different data from different tables.
Is there any way write a query which tests each record on its own formula and returns those that are true.
e.g.
Select GoodRec.Recommendation[1] // for recommendation1
FROM GoodRec,Value
WHERE x=1
UNION
Select GoodRec.Recommendation[2] // for recommendation1
FROM GoodRec,Score
WHERE y=3
this is just a guide for what I am trying to do.
I have a table of text strings, they are reccomendations. I am trying to write a query which will only contain the recommendations that are true. The problem I am having is each recommendation(cell) relates to different data from different tables.
Is there any way write a query which tests each record on its own formula and returns those that are true.
e.g.
Select GoodRec.Recommendation[1] // for recommendation1
FROM GoodRec,Value
WHERE x=1
UNION
Select GoodRec.Recommendation[2] // for recommendation1
FROM GoodRec,Score
WHERE y=3
this is just a guide for what I am trying to do.