Ok, here's some ideas on how to make this all happen automatically.
You have a list of the correctly spelled words as key.
You can use conditional formatting to automatically highlight cells that
contain misspelled words.
You can count the misspelled words by checking them against the key.
> The spreadsheet is a record of students spelling results each week. I want
> to be be able to bold (or change the colour) of words that are incorrect
[quoted text clipped - 16 lines]
>>>
>>> Babs
Thanks for your help.
I have worked out how to use conditional formatting to automatically change
the colour of cells that contain misspelled words, however I don't know how
to count the misspelled words by checking them against the key.
Would you mind if I send you a small excel sample spreadsheet to look at?
Would really appreciate your help.
Babs
> Ok, here's some ideas on how to make this all happen automatically.
>
[quoted text clipped - 24 lines]
>>>>
>>>> Babs
Ken Johnson - 28 Jan 2008 12:34 GMT
Hi Babs,
Last week I got your email address from your profile then I sent you a
workbook with Chip Pearson's UDF in place. Unfortunately there was
some sort of problem and the message couldn't be delivered.
If Biff doesn't notice your last message feel free to send me a copy
of your sample workbook to have a look at and I'll see if I can get it
working.
Ken Johnson
T. Valko - 03 Feb 2008 03:42 GMT
Try this:
A1:E1 = words typed in by students
werd1...word2...word3...wurd4...word5
The word key is in the range J1:J5
word1...word2...word3...word4...word5
There are 2 misspelled words.
=SUMPRODUCT(--(ISNA(MATCH(A1:E1,J1:J5,0))))
=2
Empty cells will be counted as misspelled words.
You can prevent the count from happening until *all* cells have been filled:
=IF(COUNTA(A1:E1)<5,"",SUMPRODUCT(--(ISNA(MATCH(A1:E1,J1:J5,0)))))
You can also delay the formatting in the same manner so the student won't
see any incorrect/correct reaults until *all* cells have been filled.

Signature
Biff
Microsoft Excel MVP
> Thanks for your help.
>
[quoted text clipped - 36 lines]
>>>>>
>>>>> Babs
Ken Johnson - 03 Feb 2008 12:27 GMT
Hi Biff,
Babs sent me a sample workbook with a key row in row 6 with correctly
spelled words in F6:I6.
Student names in column D (D8:D10) and each of the three student's
spellings of the key words along their row in columns F:I.
Column K is where the formula goes for a count of each student's
correct spellings.
I filled the following down from K8...
=SUMPRODUCT(--(F8:I8=$F$6:$I$6))
which seems OK.
Babs was happy with it too.
Ken Johnson
T. Valko - 03 Feb 2008 21:25 GMT
Good deal. Thanks for letting me know.

Signature
Biff
Microsoft Excel MVP
> Hi Biff,
> Babs sent me a sample workbook with a key row in row 6 with correctly
[quoted text clipped - 12 lines]
>
> Ken Johnson