Ive read your post a few times and i hope im understanding it correctly.
Your manager wants to know howmany people have answered "no" in some question (or all ?)
Maybe there is a better way but you can easily do this by adding a SQL statement in the onlick event of the "no" option of your option button. But by doing so, the value is directly written once you click it, but with most forms a user can select an option and then click a "go" or "next page" button wich would make the code a little more complicated. But not all too much
Code:
dim strSQL as string
strSQL = "Update tblScores set [score] = [score] +1"
docmd.runSQL strSQL
Assuming the field in your tblScores is called scores. You have to set the standard value of that field in your table to "0" for it to work. This is because your updating a value, so that value has to be there first (hence the 0)
Now if you want to write a value to the table in combination with a "next" button of some sort :
Code:
If me.YourRadio_NO_Button.value = true then
dim strSQL as string
strSQL = "Update tblScores set [score] = [score] +1"
docmd.runSQL strSQL
else
'nothing
end if
I hope this helps, if not post back with more info