Oh, I see.
There are multiple ways to proceed. But only one way comes to mind without using VBA (macros).
You obviously don't want test-takers to be able to click into the 3rd column and see the answers, so just using a formula won't work.... Unless you lock down the 3rd column so that no one can click into it.
What version of Excel do you have? I know the following is available in Excel 2003 forward - I don't remember about 2000, and I'm not at the office to check.
Let's say your questions are in A1:A10, your dropdowns with answers are in B1:B10 and you want to show whether the answer is correct in C1:C10.
First, you'd put formulas in C1:C10 - something like:
[tab]=If(B1="","",If(B1="a","Correct!","Try again"))
Now select A1:B10, go to
Format > Cells and on the
Protection tab,
uncheck Locked.
Now go to
Tools > Protection > Protect Sheet, enter the password of your choosing and
uncheck Select Locked Cells.
Now the user can select the answers from the drop down. The next cell will tell them whether or not they got the right answer. But they will not be able to click into any cells in column C, so they won't be able to see the correct answer burried within the formula.
[tt]_____
[blue]-John[/blue][/tt]
[tab][red]The plural of anecdote is not data[/red]
Help us help you. Please read
FAQ 181-2886 before posting.