I'll try and explain this the best I can...
Basically I want to stop access counting the same record multiple times
I have two tables checks and errors. A check can have several error types
If I put the grouping on the id level and use the formula below i get the correct total as follows
units errors rate
10 4 40%
However, I want to group by day and have the daily totals and also have an overall report total.
When I do this it is counting the errors as 30 instead of 10. I think i need to do something like sum the textbox with the formula above but I can't sum a calculated text box...can I?
I hope this makes sense.
Cheers
Basically I want to stop access counting the same record multiple times
I have two tables checks and errors. A check can have several error types
Code:
check units errors rate reason
ID1 10 2 20% overs
ID1 10 1 10% unders
ID1 10 1 10% damaged
If I put the grouping on the id level and use the formula below i get the correct total as follows
units errors rate
10 4 40%
Code:
=Sum([UnitsChecked])/Count([UnitsChecked])
However, I want to group by day and have the daily totals and also have an overall report total.
When I do this it is counting the errors as 30 instead of 10. I think i need to do something like sum the textbox with the formula above but I can't sum a calculated text box...can I?
I hope this makes sense.
Cheers
Last edited: