SELECT [Total Installation Repeats].MU AS MU, Count([Total Installation Repeats].[Disposition Code]) AS Count, Sum([Tech_Data Query].DO) AS Volume, Count([Total Installation Repeats].[Disposition Code])/Sum([Tech_Data Query].[DO]) AS Percentage, [Total Installation Repeats].[Close Date]
FROM [Total Installation Repeats] INNER JOIN [Tech_Data Query] ON ([Total Installation Repeats].MU = [Tech_Data Query].MU) AND ([Total Installation Repeats].[Tech#] = [Tech_Data Query].[Tech#])
GROUP BY [Total Installation Repeats].MU, [Total Installation Repeats].[Close Date], [Total Installation Repeats].MT
HAVING ((([Total Installation Repeats].[Close Date]) Between [Forms]![Repeats Interface]![Start] And [Forms]![Repeats Interface]![End]) AND (([Total Installation Repeats].MT)=[Please enter MT]))
ORDER BY [Total Installation Repeats].MU, [Total Installation Repeats].[Close Date];