I have a query that is using my 3 data containing tables. It is selecting the stats that i need from each table using the criteria that the date in the table is last month. they are related by name.
(To get last months average of each stat)
For whatever reason, not every person has a stat in every category (lazy supervisors I guess), but I need it to return what data it does have, the rest will just be null.
But, it doesn't work that way. I tried putting Is Null in the Or row for each of the statistcs, but that doesn't work.
I believe because in the table there is no "Name" "Date" and a zero in the Stat's field. If there was nothing there, then there was nothing to import. So basically, that persons name, with a date within the range, just doesn't exist.
So what else can I use instead of Is Null that would at least return the other values that do exist?
(To get last months average of each stat)
For whatever reason, not every person has a stat in every category (lazy supervisors I guess), but I need it to return what data it does have, the rest will just be null.
But, it doesn't work that way. I tried putting Is Null in the Or row for each of the statistcs, but that doesn't work.
I believe because in the table there is no "Name" "Date" and a zero in the Stat's field. If there was nothing there, then there was nothing to import. So basically, that persons name, with a date within the range, just doesn't exist.
So what else can I use instead of Is Null that would at least return the other values that do exist?