Sie sind auf Seite 1von 1

a.

What formula will be entered in cell I16 to determine the number of


attempts made by a contestant in answering a question?

=IF(COUNTIF(I4:M4,"x")>1,"Multiple
attempts",IF(COUNTIF(I4:M4,"x")=1,"Yes","No attempt"))

b. What formula will be entered in cell J16 to determine if the contestants


answer is correct?

=AND(I16="Yes",MATCH("x",I4:M4,0)=MATCH("x",B4:F4,0))

c. What formula will be entered in cell J27 to calculate the total correct
answers?

=COUNTIF(J16:J25,"TRUE")

d. What formula will be entered in cell J28 to report the prize won by the
contestant? Note that if the total score is less than 2, the error message
Thank you. Please try again. should be displayed instead of the prize.

=IFERROR(VLOOKUP(J27,A16:B20,2,TRUE), Thank you. Please try


again)

e. Why does the cell J24 show #N/A? Explain using the answer that you
wrote for part (b).

Because there is no x entry for Q9 which then caused MATCH in


part(b) to return #N/A.

Das könnte Ihnen auch gefallen