In: Advanced Math
Q1) What is the function and argument to calculate the sum of the values in the range D1:D50 for which in the adjacent value in the range A1:A50 equals “Senior” and the adjacent value in the range B1:B50 equals “B”?
Answer) The required function is:
In text form:
=SUMIFS(D1:D50,A1:A50,"Senior",B1:B50,"B")
Q2) What is the function and argument to calculate the average of the cells in the range C1:C50 for which the adjacent cell in the range B1:B50 equals “B”?
In text form:
=AVERAGEIF(B1:B50,"B",C1:C50)
Q3) What is the function and argument to return the index number of the cell within the range E1:E50 that is equal to “Carter”, using an exact match?
In text form:
=MATCH("Carter",E1:E50,0)
Hope this was helpful. Please do leave a positive rating if you liked this answer. Thanks and have a good day!