T
Todd
Here is the "SQL View" of the select query from Access. I wish to return a
count of null values of the records in the status field. I know of "nz" and
"iif" expressions but don't know where to put them in the design view or the
sql view. In query design the first column is the status field with group by
then sort ascending, second column is status field with count, and the last
column is submitted date data type with where and my date range. What and
where do I enter the expression?
SELECT [07517 m_eggers 1Q08].Status, Count([07517 m_eggers 1Q08].Status) AS
CountOfStatus
FROM [07517 m_eggers 1Q08]
WHERE ((([07517 m_eggers 1Q08].[Submitted Date Data Type]) Between
#1/1/2008# And #4/19/2008#))
GROUP BY [07517 m_eggers 1Q08].Status
ORDER BY [07517 m_eggers 1Q08].Status;
count of null values of the records in the status field. I know of "nz" and
"iif" expressions but don't know where to put them in the design view or the
sql view. In query design the first column is the status field with group by
then sort ascending, second column is status field with count, and the last
column is submitted date data type with where and my date range. What and
where do I enter the expression?
SELECT [07517 m_eggers 1Q08].Status, Count([07517 m_eggers 1Q08].Status) AS
CountOfStatus
FROM [07517 m_eggers 1Q08]
WHERE ((([07517 m_eggers 1Q08].[Submitted Date Data Type]) Between
#1/1/2008# And #4/19/2008#))
GROUP BY [07517 m_eggers 1Q08].Status
ORDER BY [07517 m_eggers 1Q08].Status;