I want to do something fairly simple. I have 2 tables that are structured as follows:
Table_FormLogInfo (Table #1)
-------------------------------------
ID
AreaID
FormReceived
ReceivedDate
* Note that the field "FormReceived" can be set to 1 or 0.
Table_AreaAbbr (Table #2)
---------------------------------
AreaID
AreaAbbr
I'm trying to set up a totals query where I do the following:
AreaAbbr is in column 1 with Total set to "Group By"
FormReceived is in column 2 with Total set to "Count"
FormReceived is in column 3 with Total set to "Where" and Criteria set to 1
The query is working correctly but not exactly how I want it to. It returns only those "AreaAbbrs" where the "FormReceived" field is set to 1 and it counts them. What I would like it to do is return ALL "AreaAbbrs" and set the count of "FormReceived" to zero instead of omitting those that do not have "FormReceived" set to 1.
Can I accomplish this?
Thank You,
Becky McDermott
Table_FormLogInfo (Table #1)
-------------------------------------
ID
AreaID
FormReceived
ReceivedDate
* Note that the field "FormReceived" can be set to 1 or 0.
Table_AreaAbbr (Table #2)
---------------------------------
AreaID
AreaAbbr
I'm trying to set up a totals query where I do the following:
AreaAbbr is in column 1 with Total set to "Group By"
FormReceived is in column 2 with Total set to "Count"
FormReceived is in column 3 with Total set to "Where" and Criteria set to 1
The query is working correctly but not exactly how I want it to. It returns only those "AreaAbbrs" where the "FormReceived" field is set to 1 and it counts them. What I would like it to do is return ALL "AreaAbbrs" and set the count of "FormReceived" to zero instead of omitting those that do not have "FormReceived" set to 1.
Can I accomplish this?
Thank You,
Becky McDermott