Hey guys,
So I stoped by the Query section and spent a few days trying to figure out how to make a query that will allow me to count how many open records I have each month.
That thread can be forund: http://www.access-programmers.co.uk/forums/showthread.php?t=214642
It might be a good idea to scan over that as that for more info.
Here is what I am looking for:
I have two dates:
1/1/2011 = 15
2/1/2011 = 15
3/1/2011 = 15
The issue with SQL is that I can group by month, BUT since there are no values for 2/1/2011 and 3/1/2011 I cant get a count, the output would look like.
1/1/2011 = 15
2/1/2011 = 0
3/1/2011 = 0
If there is a WAY to do this in SQL alone I would love to know but at this point I belive we will need a function to do the math.
I am kinda new to looping over tables of data so any advice or direction you can provide would be great!
So I stoped by the Query section and spent a few days trying to figure out how to make a query that will allow me to count how many open records I have each month.
That thread can be forund: http://www.access-programmers.co.uk/forums/showthread.php?t=214642
It might be a good idea to scan over that as that for more info.
Here is what I am looking for:
I have two dates:
- AwareDate
- DateClosed
1/1/2011 = 15
2/1/2011 = 15
3/1/2011 = 15
The issue with SQL is that I can group by month, BUT since there are no values for 2/1/2011 and 3/1/2011 I cant get a count, the output would look like.
1/1/2011 = 15
2/1/2011 = 0
3/1/2011 = 0
If there is a WAY to do this in SQL alone I would love to know but at this point I belive we will need a function to do the math.
I am kinda new to looping over tables of data so any advice or direction you can provide would be great!