I'm having issues where this query returns all the service offices I need (26):
However, this query:
Isn't return all my rows because some exist in the first, but don't exist in the 2nd. How do I get it that even if it exists in the first and not in the second it is still returned?
Thanks for your help.
Code:
SELECT McQuayInstalledBaseDetailExport.[SERVICE OFFICE], Count(McQuayInstalledBaseDetailExport.[SERVICE OFFICE]) AS [CountOfSERVICE OFFICE]
FROM McQuayInstalledBaseDetailExport
GROUP BY McQuayInstalledBaseDetailExport.[SERVICE OFFICE];
However, this query:
Code:
SELECT [No Start Date].[SERVICE OFFICE], Totals![CountOfSERVICE OFFICE]-[No Start Date]![CountOfSERVICE OFFICE] AS [Number Started], Totals.[CountOfSERVICE OFFICE] AS [Total Units], ([Totals]![CountOfSERVICE OFFICE]-[No Start Date]![CountOfSERVICE OFFICE])/[Totals]![CountOfSERVICE OFFICE] AS [% of Total Started], [IsStarted&HasDNet].[Total with D-Net], ([Totals]![CountOfSERVICE OFFICE]-[No Start Date]![CountOfSERVICE OFFICE])/[IsStarted&HasDNet]![Total with D-Net] AS [% Started With D-Net]
FROM ([No Start Date] INNER JOIN Totals ON [No Start Date].[SERVICE OFFICE] = Totals.[SERVICE OFFICE]) LEFT JOIN [IsStarted&HasDNet] ON Totals.[SERVICE OFFICE] = [IsStarted&HasDNet].[SERVICE OFFICE];
Isn't return all my rows because some exist in the first, but don't exist in the 2nd. How do I get it that even if it exists in the first and not in the second it is still returned?
Thanks for your help.
