Okay, this is a complicated one. I'm not sure there's an actual solution. Each month, we have monthly excess usage charges from our clients. If our client does not have any excess usage, data is not entered for that customer in the database for that month. There is one entry per month per customer - the month end usage charge. So the table looks like this:
I'm trying to make a query that summarizes by region (Region is queried from a different table). If no customers in North America have excess usage charges in June 2013, I still want a line in the query to show as:
North America $0 6/30/2012
Is there a way to do this in a query?
Code:
Customer Monthly Charge Month Ending
ABC Co. $4,000 06/30/2013
North America $0 6/30/2012
Is there a way to do this in a query?