Help with Date Range
At work we have a database with 2 relevant columns: An account number and a day that account was approved. I'm designing a query that for a given date range, will give the number of accounts approved on EACH day in that range. Simple enough. Problem is, EVERY day in the range needs to appear, whether there were any accounts approved on that day or not. I can't figure out a function to get the entire range. The end result should look like this
Date Accts_Approved
12/1/4 3
12/2/4 0 (or blank is fine,also)
12/3/4 7
as it is now, I'm just Counting accts by Date and it would look like this:
Date Accts_Approved
12/1/4 3
12/3/4 7
|