I cant understand why i get this error message"This expression is typed incorrectly, or it is too complex to be evaluated. For example, a numeric expression may contain too many complicated elements. Try simplifying the expression by assigning parts of the expression to variables. (Error 3071)"
When this query is run:
SELECT [Total Repair Repeats].MT_RC AS MT, [Total Repair Repeats].Full_RC AS MU, Count([Total Repair Repeats].[OR_Disp]) AS Repeats, Sum([Tech_Data Query].[VSO]+[Tech_Data Query].[UNB]) AS Volume, Count([Total Repair Repeats].[OR_Disp])/Sum([Tech_Data Query].[VSO]+[Tech_Data Query].[UNB]) AS Percentage
FROM [Total Repair Repeats] INNER JOIN [Tech_Data Query] ON ([Total Repair Repeats].[Tech_ID] = [Tech_Data Query].[Tech#]) AND ([Total Repair Repeats].Full_RC = [Tech_Data Query].MU)
WHERE ([Total Repair Repeats].[ClosedDate] Between [Forms]![Repeats Interface]![Start] And [Forms]![Repeats Interface]![End])
AND (([Total Repair Repeats].MT_RC)=[Please enter MT])
AND (([Total Repair Repeats].[OR_Disp])=[Please enter a Disposition code:])
GROUP BY [Total Repair Repeats].MT_RC, [Total Repair Repeats].Full_RC
ORDER BY Count([Total Repair Repeats].[OR_Disp])/Sum([Tech_Data Query].[VSO]+[Tech_Data Query].[UNB]) DESC;
This one has me bent outta shape here all. Any Suggestions?
When this query is run:
SELECT [Total Repair Repeats].MT_RC AS MT, [Total Repair Repeats].Full_RC AS MU, Count([Total Repair Repeats].[OR_Disp]) AS Repeats, Sum([Tech_Data Query].[VSO]+[Tech_Data Query].[UNB]) AS Volume, Count([Total Repair Repeats].[OR_Disp])/Sum([Tech_Data Query].[VSO]+[Tech_Data Query].[UNB]) AS Percentage
FROM [Total Repair Repeats] INNER JOIN [Tech_Data Query] ON ([Total Repair Repeats].[Tech_ID] = [Tech_Data Query].[Tech#]) AND ([Total Repair Repeats].Full_RC = [Tech_Data Query].MU)
WHERE ([Total Repair Repeats].[ClosedDate] Between [Forms]![Repeats Interface]![Start] And [Forms]![Repeats Interface]![End])
AND (([Total Repair Repeats].MT_RC)=[Please enter MT])
AND (([Total Repair Repeats].[OR_Disp])=[Please enter a Disposition code:])
GROUP BY [Total Repair Repeats].MT_RC, [Total Repair Repeats].Full_RC
ORDER BY Count([Total Repair Repeats].[OR_Disp])/Sum([Tech_Data Query].[VSO]+[Tech_Data Query].[UNB]) DESC;
This one has me bent outta shape here all. Any Suggestions?