Yeah I guess your right It must be that multi valued field causing the issue cause I didn't have any issues with calculating these percentages which use a regular combo box. So I might just have to create a second query off of the first one because it seems like the multi-valued calculation has to be done prior to it being used like the new query need to be based off the old query with only one difference which is an added column to do the calculation. But how would I change my output format to 0.0% instead of the statndard percentage of 0.00% or would I be better off leaving the percentage as a decimal and changing the format in the report that is based off this query. What would be the formula I would need in the format block of the txt box like #.#%
Code:
SELECT DDRs_Table.PWC,
Count([DDRs_Table]![PWC]) AS [NO DDRS LOADED],
Count(IIf([DDRs_Table]![DDRSTATUS]="ERROR NOT CORRECTABLE",1,Null)) AS [NO UNCORRECTABLE ERRORS],
[NO UNCORRECTABLE ERRORS]/[NO DDRS LOADED] AS [AFTER CORRECTION ERROR RATE],
Count(IIf([DDRs_Table]![DDRSTATUS]="NOT REVIEWED",1,Null)) AS [NOT REVIEWED],
([NO DDRS LOADED]-[NOT REVIEWED])/[NO DDRS LOADED] AS [PARTICIPATION RATE]
FROM DDRs_Table
GROUP BY DDRs_Table.PWC
ORDER BY DDRs_Table.PWC;