Greg, you can could the number of Yes answers in a field named Field1, and
divide by the total by putting this into the ControlSource of a text box in
the Form Footer section:
=-Sum([Field1]) / Count("*")
There's a more fundamental design problem here though. Over time, one
builder will construct multiple houses. One house could have multiple
inspections (different inspections, or a repeat if it failed one.) One
inspection has multiple questions. You are therefore going to need at least
these tables:
Builder
House
Inpsection
Question
InspectionAnswer
The Inspection Answer will not have lots of yes/no check boxes. It will have
fields:
InspectionID which inspection is this answer part of.
QuestionID which question is being answered in this row.
Answer the value of the answer to this question in this
inspection.
The interface will consist of a main form bound to the Inspection table, and
a subform bound to the InspectionAnswer table (one answer per row in the
subform.)
If that does not make any sense to you, take a look at Duane Hookom's
example of how to do a survey database at:
http://www.rogersaccesslibrary.com/Otherdownload.asp?SampleName='At Your Survey 2000'
--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Reply to group, rather than allenbrowne at mvps dot org.
Greg said:
I am creating a form that inspectors use to rate houses. On it I created
each
item they are inspecting as a field with a yes/no box. The inspector will
inspect several houses by different builders. I need to be able to create
a
summary sheet that will count the number of yes's and if possible divide
that
by the total number of entries for any particular builder.