P
Sorry to be so short - I'm at work and I am trying to figure the ratio for
'Success to Attempt' ratio. The data in the table that I need to calculate is
as follows:
1=Yes (meaning attempt successful)
0=No (meaning attempt not successful)
The Chief wants a Success to Attempt ratio ,,,,,, and I am stumped!
John Vinson said:Sorry to be so short - I'm at work and I am trying to figure the ratio for
'Success to Attempt' ratio. The data in the table that I need to calculate is
as follows:
1=Yes (meaning attempt successful)
0=No (meaning attempt not successful)
The Chief wants a Success to Attempt ratio ,,,,,, and I am stumped!
Do a Totals query (click the Greek Sigma button) and put into a vacant
Field cell:
Success To Attempt: Sum([fieldname]) / Count([fieldname])
This will *sum* the successes (the failures, being zero, won't add
anything) and count the non-NULL records.
John W. Vinson[MVP]