John, I don't care WHEN they learned the task, just that they learned it. I
don't KNOW how to calculate it, that's what I'm trying to find out. What I
was told was... score:abs([field1],[field2],field3])/3, but whenever I try it
I get a "Name?" error.
>John, I don't care WHEN they learned the task, just that they learned it. I
>don't KNOW how to calculate it, that's what I'm trying to find out. What I
>was told was... score:abs([field1],[field2],field3])/3, but whenever I try it
>I get a "Name?" error.
Thank you. You *didn't say that*, and my telepathy was not working.
Again, let me ask, so I'll know whether or not I'm answering the right
question:
How do you want to calculate the score?
You have 16 yes/no fields. What is the score if all 16 are answered Yes? if
all are answered No? Does the score depend on which questions get answered yes
and which get answered no, or just on the total count?
John W. Vinson [MVP]
bhrosey - 05 May 2007 12:38 GMT
>>John, I don't care WHEN they learned the task, just that they learned it. I
>>don't KNOW how to calculate it, that's what I'm trying to find out. What I
[quoted text clipped - 13 lines]
>
> John W. Vinson [MVP]
If all are checked "yes", it would be 100%. 12 of the 16...75% and so on.
It doesn't matter which ones get checked. Thanks for the help!!
John W. Vinson - 05 May 2007 22:44 GMT
>If all are checked "yes", it would be 100%. 12 of the 16...75% and so on.
>It doesn't matter which ones get checked. Thanks for the help!!
Ok... you can then set the Score textbox's Control Source to
= - ([Field1] + [Field2] + [Field3] + ... + [Field16]) / 16
This works because a Yes/No field (checkbox) stores -1 for Yes, 0 for No. You
can sum all the yes/no fields; a perfect score would be -16, half right would
be -8 and so on. Take the negative of this and divide by 16 to get the
average.
John W. Vinson [MVP]
bhrosey - 07 May 2007 12:54 GMT
>>If all are checked "yes", it would be 100%. 12 of the 16...75% and so on.
>>It doesn't matter which ones get checked. Thanks for the help!!
[quoted text clipped - 9 lines]
>
> John W. Vinson [MVP]
That worked axactly as I wanted, Thank you, very, very much!!