Calculating a sum (count) and percentage field

mickeyboy

New member
Local time
Today, 15:25
Joined
Jun 7, 2013
Messages
8
I am trying to work out the expression that will first count the number of 'Yes' returns in a series of yes/no boxes and then display as a percentage.

To explain...The yes/no boxes represent attendance over a 20 lesson course. I have added a count for each lesson for student attendance..(grouping them in the footer) but I would like to add the number of attendance for each student.

Any help would be greatly appreciated
 
in general terms use

Dcount("StudentID","tableattendance","((StudentID=" & LinkField & ") AND (YesNoField = TRUE))")
 

Users who are viewing this thread

Back
Top Bottom