Respuesta :

Answer:

=vlookup(h14, a5:h11,8,false)

Explanation:

Here, h15 is the cell in which we need the output and the value to be matched in rows to find the exact row is h14, and the range is expressed as a5:h11. Now to find the column number, we need to figure out the first and the concerned column. So, the concerned column is in which the total attendance is being listed and it is h(h14), and the first column is a. So, the column number is a=1 h=8, =8. And since we need the exact match, the value of the fourth argument is false. And thus, we have the above formula. Remember. vlookup formula is:

=vlookup(cell where the result is to be placed, range, column number in the same row as h14, exact match or approximate match). For exact match it's false, and for the approximate match, it's true.

The vlookup function to enter in cell h15 is:  =vlookup(h14, a5:h11,8)

The syntax of the vlookup function is:

VLOOKUP(lookup_value, table_array, col_index_num)

From the question, we have:

  • lookup_value = h14
  • table_array = a5 : h11
  • col_index_num = 8 i.e. the number of columns

So, the vlookup function to enter in cell h15 is:

=vlookup(h14, a5:h11,8)

Read more about Excel formulas at:

https://brainly.com/question/14174528