C
Ck1
I have a table that lists business summary data by day.
Not every business has information on each day.
However I need to pull in the business along with zero values when this
happens.
I created a table listing all of the business names and did a join, however
it is still not pulling in the businesses without any information on that day.
Here is my query - any help would be appreciated.
SELECT [Outbound Business Names].[Business Name], [Dialer Summary
results].RowDate
FROM [Dialer Summary results] RIGHT JOIN [Outbound Business Names] ON [
Dialer Summary results].Business = [Outbound Business Names].[Business Name]
GROUP BY [Outbound Business Names].[Business Name], [Outbound Business
Names].MetricsBusinessName, [Eden Prairie Dialer Summary results by
business].RowDate
HAVING ((([Dialer Summary results].RowDate)="03/20/2010"));
Not every business has information on each day.
However I need to pull in the business along with zero values when this
happens.
I created a table listing all of the business names and did a join, however
it is still not pulling in the businesses without any information on that day.
Here is my query - any help would be appreciated.
SELECT [Outbound Business Names].[Business Name], [Dialer Summary
results].RowDate
FROM [Dialer Summary results] RIGHT JOIN [Outbound Business Names] ON [
Dialer Summary results].Business = [Outbound Business Names].[Business Name]
GROUP BY [Outbound Business Names].[Business Name], [Outbound Business
Names].MetricsBusinessName, [Eden Prairie Dialer Summary results by
business].RowDate
HAVING ((([Dialer Summary results].RowDate)="03/20/2010"));