I am trying to extract data from varions tables based on the activity date on each of the tables. If I use the "AND" connector, then all of the tables must meet the date criteria and my list is incomplete.
Table1.Date in Last7Days and
Table2.Date in Last7Days and
....
Tablen.date in Last7Days
If I use the "OR" connector then I get more than what I need. That is, I get unwanted dates simply because the ID's matched.
Table1.Date in Last7Days or
Table2.Date in Last7Days or
....
Tablen.Date in Last7Days
These activity tables are all Left Outer Joined to the Master Table by a Master ID number.
Short of making a combination selection, I might add that I have about 6 tables affected and that would be 6! or 720 combinations, I believe.
Any suggestions?
Thanks in advance.
Table1.Date in Last7Days and
Table2.Date in Last7Days and
....
Tablen.date in Last7Days
If I use the "OR" connector then I get more than what I need. That is, I get unwanted dates simply because the ID's matched.
Table1.Date in Last7Days or
Table2.Date in Last7Days or
....
Tablen.Date in Last7Days
These activity tables are all Left Outer Joined to the Master Table by a Master ID number.
Short of making a combination selection, I might add that I have about 6 tables affected and that would be 6! or 720 combinations, I believe.
Any suggestions?
Thanks in advance.